Injector

Injector

Inject javascript on each page load + hot reload. For local files install npm package 'filesystem-server'

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Injector",
  "short_name": "*_TI_*",
  "description": "Inject javascript on each page load + hot reload. For local files install npm package 'filesystem-server' ",
  "version": "1.0.01",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "browser_action": {
    "default_title": "Injector",
    "default_popup": "html/popup.html",
    "default_icon": "icons/icon.png",
    "default_action": "javascript/popup.js"
  },
  "background": {
    "scripts": [
      "javascript/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "javascript/index.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "<all_urls>",
    "https://*/*",
    "http://*/*",
    "tabs",
    "background",
    "nativeMessaging"
  ]
}