Visual Online Bookmarks for Edge

Visual Online Bookmarks for Edge

Access to bookmarks from anywhere. Expanding the capabilities of the Onlinezakladki.ru service. For Microsoft Edge browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "Providec",
  "name": "__MSG_ext_name__",
  "description": "__MSG_ext_description__",
  "default_locale": "en",
  "version": "3.2.19",
  "manifest_version": 2,
  "chrome_url_overrides": {
    "newtab": "newChromiumTab.html"
  },
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/icon_16.png"
    },
    "default_title": "__MSG_ext_default_title__"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "inc/global.functions.js",
        "inc/storage.local.js",
        "onlinezakladki.js"
      ],
      "matches": [
        "https://onlinezakladki.ru/*",
        "https://bk.tools/*"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "icons/icon_16.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "incognito": "split",
  "permissions": [
    "bookmarks",
    "history",
    "notifications",
    "contextMenus",
    "tabs",
    "activeTab",
    "storage",
    "unlimitedStorage",
    "<all_urls>"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}