DesignBold

DesignBold

DesignBold Context Menu Button

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "short_name": "__MSG_extName__",
  "version": "0.4.2",
  "manifest_version": 2,
  "description": "__MSG_extDesc__",
  "icons": {
    "16": "16.png",
    "128": "128.png"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "init_button.js"
      ],
      "all_frames": false
    }
  ],
  "default_locale": "en",
  "browser_action": {
    "default_title": "DesignBold"
  },
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://cdnjs.cloudflare.com; object-src 'self'",
  "web_accessible_resources": [
    "chrome_extension.html"
  ],
  "permissions": [
    "contextMenus",
    "https://*/*",
    "http://*/*",
    "tabs",
    "activeTab",
    "storage"
  ]
}