On Topic

On Topic

On Topic

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "On Topic",
  "description": "On Topic",
  "version": "1.1.1",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "tabs"
  ],
  "icons": {
    "48": "icons/favicon-32x32.png"
  },
  "browser_action": {
    "default_title": "On Topic",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "images/*"
  ]
}