Cleartext

Cleartext

Reading help, anywhere on the net

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Cleartext",
  "description": "__MSG_description__",
  "version": "1.9.10",
  "default_locale": "en",
  "icons": {
    "16": "webplugin-resources/img/color-round-16.png",
    "48": "webplugin-resources/img/color-round-48.png",
    "128": "webplugin-resources/img/color-round-128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "webplugin-resources/img/color-round-128.png",
    "default_title": "Launch Cleartext",
    "default_popup": "pages/main_menu.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*",
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://my.heroapp.ai/**/*",
        "http://localhost:8000/**/*"
      ],
      "css": [
        "css/cleartext-site-inject.min.css"
      ],
      "js": [
        "js/cleartext-webplugin-bundle.min.js",
        "js/cleartext-extension-bundle.min.js"
      ],
      "all_frames": false
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.heroapp.ai/*"
    ],
    "ids": [
      "*"
    ]
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-eval' https://www.google-analytics.com https://www.googletagmanager.com https://google-analytics.com 'unsafe-inline'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "webplugin-resources/**/*",
        "pages/*",
        "config.js",
        "scripts/*",
        "css/*",
        "webplugin-resources/fonts/*.ttf"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    }
  ],
  "commands": {
    "run-cleartext": {
      "suggested_key": "Ctrl+Shift+H",
      "description": "Run Cleartext",
      "action": {}
    }
  }
}