jQuery Injector

jQuery Injector

Inject jQuery into all frames on any 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": "jQuery Injector",
  "short_name": "jQueryInjector",
  "version": "1.1.2",
  "description": "Inject jQuery into all frames on any page.",
  "browser_action": {
    "name": "jQuery Injector",
    "default_popup": "pages/popup_settings.html"
  },
  "icons": {
    "16": "imgs/logo16.png",
    "48": "imgs/logo48.png",
    "128": "imgs/logo128.png"
  },
  "permissions": [
    "contextMenus",
    "storage",
    "tabs"
  ],
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "options_page": "pages/settings.html",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/injected.js"
      ],
      "all_frames": true
    }
  ]
}