CTG Plugins

CTG Plugins

A collection of simple plugins to improve your web browsing experience.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "CTG Plugins",
  "short_name": "CTG Plugins",
  "author": "Jason O'Neill",
  "description": "A collection of simple plugins to improve your web browsing experience.",
  "version": "1.7.1",
  "icons": {
    "16": "assets/icon16.png",
    "128": "assets/icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "assets/icon128.png",
    "default_popup": "popup.html",
    "default_title": "CTG Plugins"
  },
  "permissions": [
    "tabs",
    "<all_urls>",
    "storage",
    "webRequest",
    "contextMenus"
  ]
}