Windows Remix ClickOnce Helper

Windows Remix ClickOnce Helper

Enable ClickOnce support in Chrome™ and Firefox™ for Microsoft® Windows™.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Windows Remix ClickOnce Helper",
  "short_name": "ClickOnce",
  "description": "Enable ClickOnce support in Chrome™ and Firefox™ for Microsoft® Windows™.",
  "version": "1.5.2",
  "author": "Redsandro <[email protected]>",
  "homepage_url": "https://www.windowsremix.com/helper",
  "icons": {
    "16": "icons/app_16.png",
    "48": "icons/app_48.png",
    "64": "icons/app_64.png",
    "128": "icons/app_128.png"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "nativeMessaging",
    "*://*/*",
    "declarativeContent"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "page_action": {
    "default_icon": {
      "19": "page19.png",
      "38": "page38.png"
    },
    "default_title": "ClickOnce content detected on this page"
  },
  "web_accessible_resources": [
    "blank.png",
    "detect.js"
  ],
  "options_page": "install/nativeclient.html",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuwvXcHrKbTbT/HMGqR4pq9S3Kn1595Fh2zQkrtcytcu6li7YDG6THyijLFwjuOLeO5VMKi2RrjHfkSXErsULzAuv2iPXF4mKLsQBHzNYvhspCoWdq+T+ZOuqEwda921ovCZkQN9pQlq0Ycrz3EcbtfZKMUSqBIbVzq74TyjjgUCy8Qvg3Sw5FqOZQvQtlzFOWk/AKY1OrxU2GjGrrERbunZ8s2OdR2NkhejK8t6UFeNGNoni+AJnOh1KstwFWJHovCj2rjjz9RnZBYA+HmkDAloUCkgtuDkOSGIaEoZ+sNifMnNXsESY2M91Kr1ohdjmaR3SPZcZFYoH1737NfIy3wIDAQAB"
}