Premier Chrome Toolbar

Premier Chrome Toolbar

Premier Reader Chrome Toolbar

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Premier Chrome Toolbar",
  "description": "Premier Reader Chrome Toolbar",
  "version": "5.0",
  "permissions": [
    "tabs",
    "<all_urls>"
  ],
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "browser_action": {
    "default_icon": "img/icon.png",
    "default_title": "Premier Chrome toolbar",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.js",
        "tp_content_script.js"
      ],
      "exclude_matches": [
        "*://www.mpextserver.com/*"
      ],
      "all_frames": true
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://www.mpextserver.com/*"
    ]
  }
}