ExtManager

ExtManager

Manage the chrome extensions. One click to enable or disable extension. Group extensions and drag it. Sort extensions by drag it.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "0.3.3",
  "icons": {
    "19": "img/icon19.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "browser_action": {
    "default_title": "__MSG_name__",
    "default_icon": "img/icon19.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "js/jquery.js",
      "js/system.js",
      "js/background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "management",
    "tabs",
    "storage",
    "https://*.extmanager.com/*"
  ],
  "default_locale": "en",
  "manifest_version": 2
}