Enableocity

Enableocity

Enableocity

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Enableocity",
  "version": "1.9",
  "description": "Enableocity",
  "manifest_version": 2,
  "browser_action": {},
  "background": {
    "scripts": [
      "jquery.min.js",
      "popup.js",
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "chrome.css"
      ],
      "js": [
        "jquery.min.js",
        "copyTextFromPage.js",
        "mailIconInject.js"
      ],
      "all_frames": true
    }
  ],
  "icons": {
    "16": "assets/images/enableocity_lcon_16x16px.png",
    "48": "assets/images/enableocity_lcon_48x48px.png",
    "128": "assets/images/enableocity_lcon_128x128px.png"
  },
  "permissions": [
    "storage",
    "contextMenus",
    "http://*/*",
    "https://*/*",
    "unlimitedStorage",
    "tabs",
    "notifications",
    "activeTab"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.google.com/*"
    ]
  },
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com https://cdn.jsdelivr.net https://cdnjs.cloudflare.com https://maxcdn.bootstrapcdn.com; object-src 'self'",
  "web_accessible_resources": [
    "assets/css/*",
    "assets/js/*",
    "assets/images/*"
  ]
}