MeddleMonkey

MeddleMonkey

Userscript support for Chromium based browsers like Opera and Chrome.

Additional files are visible only to premium users

manifest.json


{
  "name": "MeddleMonkey",
  "version": "1.0.7",
  "manifest_version": 2,
  "description": "__MSG_extDescription__",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "default_locale": "en",
  "browser_action": {
    "default_icon": {
      "19": "images/icon19.png",
      "38": "images/icon38.png"
    },
    "default_title": "__MSG_extName__",
    "default_popup": "popup/index.html"
  },
  "background": {
    "page": "background/index.html"
  },
  "options_page": "options/index.html",
  "content_scripts": [
    {
      "js": [
        "injected.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "permissions": [
    "tabs",
    "<all_urls>",
    "webRequest",
    "webRequestBlocking",
    "notifications",
    "downloads",
    "storage",
    "unlimitedStorage"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}