Stay for Browser

Stay for Browser

Userscript manager compatible with Tampermonkey, Violentmonkey. Dark mode for every website. Stay synched on Chrome/Safari/Firefox.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extension_name_browser__",
  "version": "2.6.6",
  "description": "__MSG_extension_description_browser__",
  "manifest_version": 2,
  "build": "227",
  "copyright": "Stay Browser",
  "icons": {
    "48": "extension-img/icon-48-chrome.png",
    "96": "extension-img/icon-96-chrome.png",
    "128": "extension-img/icon-128-chrome.png",
    "256": "extension-img/icon-256-chrome.png"
  },
  "background": {
    "scripts": [
      "source/background.js"
    ],
    "persistent": false,
    "match_about_blank": true
  },
  "default_locale": "en",
  "content_scripts": [
    {
      "js": [
        "source/darkmode/fallback.js",
        "source/darkmode/dark.config.js",
        "source/darkmode/dark.user.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "match_about_blank": true
    },
    {
      "js": [
        "source/content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "match_about_blank": true
    },
    {
      "js": [
        "source/sniffer/sniffer.img.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "run_at": "document_start"
    },
    {
      "js": [
        "source/inject/install-script.js"
      ],
      "matches": [
        "*://greasyfork.org/*/scripts/*"
      ],
      "all_frames": false,
      "run_at": "document_start"
    },
    {
      "js": [
        "source/sniffer/sniffer.file.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": [
    "*"
  ],
  "permissions": [
    "activeTab",
    "<all_urls>",
    "storage",
    "tabs",
    "alarms",
    "unlimitedStorage",
    "clipboardwrite",
    "cookies",
    "downloads"
  ]
}