WebAdmin

WebAdmin

This extension checks if site supports WebAdmin Editor

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "WebAdmin",
  "description": "This extension checks if site supports WebAdmin Editor",
  "version": "0.1.1",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "index.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+F",
        "mac": "MacCtrl+Shift+F"
      },
      "description": "Opens index.html"
    }
  },
  "background": {
    "scripts": [
      "lib/jquery/jquery.min.js",
      "lib/js-yaml/js-yaml.min.js",
      "background.js"
    ],
    "persistent": false
  },
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'",
  "permissions": [
    "activeTab",
    "tabs",
    "http://*/",
    "https://*/"
  ]
}