Dimension Bag

Dimension Bag

A smooth and simple extension that is convenient for managing your browser extension 😉

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.2.1",
  "manifest_version": 2,
  "minimum_chrome_version": "56.0.0",
  "name": "__MSG_name__",
  "short_name": "__MSG_shortName__",
  "description": "__MSG_description__",
  "offline_enabled": true,
  "default_locale": "zh_CN",
  "icons": {
    "128": "static/icon/logo.png"
  },
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "browser_action": {
    "default_icon": {
      "19": "static/icon/logo.png",
      "38": "static/icon/logo.png"
    },
    "default_popup": "index.html",
    "default_title": "__MSG_name__"
  },
  "permissions": [
    "tabs",
    "storage",
    "management"
  ],
  "web_accessible_resources": [
    "static/js/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}