Tampermonkey

Tampermonkey

Tampermonkey is the world's most popular userscript manager.

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "content_security_policy": "script-src 'self'; object-src 'self';",
  "browser_specific_settings": {
    "gecko": {
      "id": "firefox@tampermonkey.net",
      "strict_min_version": "78.0"
    },
    "gecko_android": {
      "strict_min_version": "113.0"
    }
  },
  "content_scripts": [],
  "user_scripts": {
    "api_script": "content.js"
  },
  "browser_action": {
    "default_icon": {
      "16": "images/icon_grey16.png",
      "24": "images/icon_grey24.png",
      "32": "images/icon_grey32.png"
    },
    "default_title": "Tampermonkey",
    "default_popup": "action.html",
    "browser_style": false
  },
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "version": "5.1.0",
  "homepage_url": "https://www.tampermonkey.net/",
  "icons": {
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": false,
    "open_in_tab": true
  },
  "commands": {
    "activate": {
      "description": "Activate the extension"
    },
    "toggle-enable": {
      "description": "Toggle enable state"
    },
    "open-dashboard": {
      "description": "Open dashboard"
    },
    "open-dashboard-with-running-scripts": {
      "description": "Open dashboard with the current tab's URL used as filter"
    },
    "open-new-script": {
      "description": "Open new script tab"
    }
  },
  "permissions": [
    "alarms",
    "notifications",
    "tabs",
    "idle",
    "webNavigation",
    "webRequest",
    "webRequestBlocking",
    "unlimitedStorage",
    "storage",
    "contextMenus",
    "clipboardWrite",
    "cookies",
    "downloads",
    "<all_urls>"
  ]
}