PageDebate.com

PageDebate.com

This extension shows a pagedebate.com comments, reviews and other records linked to current web page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "PageDebate.com",
  "description": "This extension shows a pagedebate.com comments, reviews and other records linked to current web page",
  "version": "2.1",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "exclude_matches": [
        "*://pagedebate.com/*",
        "*://www.pagedebate.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "script.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "http://pagedebate.com/",
    "https://pagedebate.com/"
  ]
}