Gorilla Script- and Style-Loader

Gorilla Script- and Style-Loader

Enables you to load Javascript and CSS into websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Gorilla Script- and Style-Loader",
  "version": "4.1.0",
  "description": "Enables you to load Javascript and CSS into websites.",
  "default_locale": "en",
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "96": "icons/icon-96.png"
  },
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "activeTab",
    "storage"
  ],
  "browser_action": {
    "default_icon": "icons/icon-38.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "boot.js"
      ],
      "run_at": "document_start"
    }
  ]
}