Clearly Reader

Clearly Reader

Your missing web reader

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_pkgName__",
  "version": "3.0.4",
  "description": "__MSG_pkgDescription__",
  "default_locale": "en",
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "mac": "Alt+R",
        "windows": "Alt+R",
        "chromeos": "Alt+R",
        "linux": "Alt+R"
      }
    }
  },
  "action": {
    "default_title": "Active Clearly (Alt/Option+R)",
    "default_icon": {
      "16": "assets/icons/disable/ic_16.png",
      "32": "assets/icons/disable/ic_32.png",
      "48": "assets/icons/disable/ic_48.png",
      "128": "assets/icons/disable/ic_128.png"
    }
  },
  "background": {
    "scripts": [
      "background-firefox.js"
    ]
  },
  "icons": {
    "16": "assets/icons/readable/ic_16.png",
    "32": "assets/icons/readable/ic_32.png",
    "48": "assets/icons/readable/ic_48.png",
    "128": "assets/icons/readable/ic_128.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self' http://localhost:5200 http://localhost:4000; object-src 'self'; connect-src *; style-src * 'unsafe-inline' 'self' blob:; font-src *; img-src * data: blob:; frame-src *; media-src *; child-src *; manifest-src *; frame-ancestors *;"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "content-script/import-index.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "exclude_matches": [
        "*://app.clearlyreader.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "permissions": [
    "contextMenus",
    "storage",
    "activeTab"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*.*",
        "assets/**/*.*",
        "pages/**/*.*",
        "content-script/index.js"
      ],
      "matches": [
        "*://*/*"
      ]
    },
    {
      "resources": [
        "chunks/*-*.js",
        "content-script/index.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{b5a7d8f9-7631-4c8b-8fa0-fd03a9d281f6}"
    }
  }
}