Atavi - bookmark manager

Visual bookmarks, bookmarks sync across various browsers and absolute safety for your bookmarks
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extension_name__",
  "short_name": "__MSG_extension_shortname__",
  "description": "__MSG_extension_description__",
  "default_locale": "en",
  "version": "1.3.2",
  "permissions": [
    "contextMenus",
    "activeTab",
    "bookmarks",
    "tabs",
    "*://atavi.com/",
    "*://*.atavi.com/",
    "*://www.toppage.test/*",
    "cookies",
    "storage"
  ],
  "optional_permissions": [
    "management"
  ],
  "homepage_url": "https://atavi.com",
  "chrome_settings_overrides": {
    "homepage": "https://atavi.com/?from=ext-chrome"
  },
  "manifest_version": 2,
  "icons": {
    "16": "i/icon16.png",
    "19": "i/icon19.png",
    "32": "i/icon32.png",
    "48": "i/icon48.png",
    "128": "i/icon128.png"
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "background": {
    "page": "background/page.html"
  },
  "page_action": {
    "default_icon": "i/icon19.png",
    "default_title": "__MSG_pageaction_title__",
    "default_popup": "create/index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "AtaviExt.js",
        "includes/common.js"
      ],
      "css": [
        "c/common.css"
      ]
    }
  ],
  "omnibox": {
    "keyword": "atavi"
  },
  "options_page": "options/index.html",
  "web_accessible_resources": [
    "includes/inject.js",
    "config.json"
  ],
  "externally_connectable": {
    "ids": [
      "cppkdfiehodeplgalcinpklndfdmccba",
      "pcacinjbimcceegjmilcmllbagjjelef",
      "jpchabeoojaflbaajmjhfcfiknckabpo",
      "fhdbapfgnkbpnkffmjkjofblcmmgonia",
      "dpmijkcjnkemjnlkjcghoagimgolaofh",
      "kdbcpidbakbgbgclbjldlelbafohkagp",
      "kjpbnomffmmmdnedadahoflodnabckoi",
      "nmebjojifckgfojmficpdnlglgcifhjd",
      "ckpifcbkpbdakjgcigilkdhhfbmgcfdh"
    ],
    "matches": [
      "*://*.atavi.com/*"
    ]
  },
  "commands": {
    "_execute_page_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+S",
        "mac": "MacCtrl+Shift+S"
      }
    }
  }
}