Browser Injector

Browser Injector

Injects CSS and Javascript into pages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extensionName__",
  "version": "1.9.8",
  "manifest_version": 2,
  "description": "__MSG_extensionDescription__",
  "author": "Paul-Émile Arnaly",
  "homepage_url": "https://github.com/pearnaly/browser-injetor",
  "icons": {
    "16": "/icons/icon-16x16.png",
    "24": "/icons/icon-24x24.png",
    "32": "/icons/icon-32x32.png",
    "48": "/icons/icon-48x48.png",
    "128": "/icons/icon-128x128.png"
  },
  "options_ui": {
    "page": "/index.html#/options"
  },
  "background": {
    "page": "/index.html#/background",
    "persistent": true
  },
  "browser_action": {
    "default_title": "__MSG_extensionName__",
    "default_popup": "/index.html#/popup",
    "default_icon": {
      "16": "/icons/icon-16x16.png",
      "24": "/icons/icon-24x24.png",
      "32": "/icons/icon-32x32.png",
      "48": "/icons/icon-48x48.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "injector.js"
      ]
    }
  ],
  "commands": {
    "toggle_active": {
      "suggested_key": {
        "default": "Alt+A"
      },
      "description": "__MSG_commandToggleActive__"
    },
    "toggle_tab_active": {
      "suggested_key": {
        "default": "Alt+T"
      },
      "description": "__MSG_commandToggleTabActive__"
    },
    "open_rules": {
      "description": "__MSG_commandOpenRules__"
    },
    "open_detached_panel": {
      "suggested_key": {
        "default": "Alt+P"
      },
      "description": "__MSG_commandOpenDetachedPanel__"
    },
    "new_quick_rule_picker": {
      "suggested_key": {
        "default": "Alt+N"
      },
      "description": "__MSG_commandNewQuickRulePicker__"
    }
  },
  "permissions": [
    "contextMenus",
    "storage",
    "tabs",
    "*://*/*"
  ],
  "browser_specific_settings": {},
  "default_locale": "en",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}