Browser Extension

Browser Extension

Siimpl Browser Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Browser Extension",
  "version": "2.0.3",
  "description": "Siimpl Browser Extension",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "icons": {
    "128": "public/Logo.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "public/*",
        "assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://siimpl.co/*"
    ]
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "tabs",
    "<all_urls>"
  ],
  "oauth2": {
    "client_id": "633588781524-4rjgbameaecmfq90fpqe49ev65gp9gna.apps.googleusercontent.com",
    "scopes": [
      "openid",
      "email",
      "profile"
    ]
  },
  "background": {
    "service_worker": "background/index.js",
    "type": "module"
  },
  "action": {
    "default_popup": "popup/index-4TAE4NSF.html",
    "default_icon": "public/Logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "content/index.js"
      ],
      "css": [
        "content/index.css"
      ],
      "run_at": "document_start"
    }
  ],
  "options_ui": {
    "page": "options/index-BHA3Q6HS.html"
  }
}