Stonly Browser Extension

Stonly Browser Extension

Enhance your Stonly guides creation experience with our browser extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Michał Kostrzyński",
  "homepage_url": "https://stonly.com",
  "manifest_version": 3,
  "permissions": [
    "declarativeNetRequest",
    "storage",
    "tabs"
  ],
  "name": "Stonly Browser Extension",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon38.png"
  },
  "icons": {
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ]
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "run_at": "document_start",
      "js": [
        "widgetBlocker.bundle.js"
      ]
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "run_at": "document_start",
      "js": [
        "widgetStorageAdapter.bundle.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.js",
        "icon128.png",
        "icon38.png",
        "contentScriptContent.bundle.js",
        "contentScriptContent.bundle.js.map",
        "widget-initializer.js",
        "widget-id-setter.js",
        "widget-storage-adapter.js",
        "stonly-widget-extension.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "use_dynamic_url": true
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.stonly.com/*"
    ]
  },
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "description": "Enhance your Stonly guides creation experience with our browser extension.",
  "version": "2.1.61",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlClppep4+MYTlTCi5v4BhTtOEThiZcApmfmIp9BU64ZeVhFmMUvP9NVhNhApdLz2wjw7ugaPLJggZX/lqjgFizrp6Y/Ort6Go0IBCWKmcBD9HMYEknSlBsF+zrxaAmbBEv17ldl1KxW8OLqOSk0AC+ACexl4ICGBEUh+GI51OcrnMOhSlCZgF7mnyzTi+r09FBBJC4T1+xtg8m+WXI1CULa9VMghCEyvhZmMEIUbtNxOk/twoJthFFHKqXQ3OvxOK/ywv0C2uR+Zxwez/XGyeydUZ7mS9breecnnr4GQz6RoKXGYieyTWZii0St8LypLi7QkkG4uuDEaERnEOAooWwIDAQAB"
}