Закладки

Закладки

Закладки

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Закладки",
  "description": "Закладки",
  "version": "3",
  "permissions": [
    "activeTab",
    "storage",
    "bookmarks",
    "http://mylinkbox.ru/",
    "https://oauth.vk.com/"
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://mylinkbox.ru/*"
      ],
      "js": [
        "gettext.js"
      ]
    },
    {
      "matches": [
        "http://mylinkbox.ru/*"
      ],
      "js": [
        "handleSyncButton.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "bookmarkSync.js"
    ]
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}