Circle reader

Circle reader

An extension that provides immersive reading to make you fall in love with reading on the web

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_name__",
  "version": "3.1.0",
  "manifest_version": 2,
  "description": "__MSG_description__",
  "author": "ranhe<[email protected]>",
  "background": {
    "scripts": [
      "worker.js"
    ],
    "persistent": true
  },
  "permissions": [
    "contextMenus",
    "fontSettings",
    "<all_urls>"
  ],
  "browser_action": {
    "default_icon": {
      "16": "assets/16-default.png",
      "32": "assets/32-default.png"
    }
  },
  "icons": {
    "16": "assets/16.png",
    "32": "assets/32.png",
    "48": "assets/48.png",
    "128": "assets/128.png"
  },
  "default_locale": "en",
  "options_page": "view/index.html",
  "homepage_url": "https://circlereader.com",
  "content_scripts": [
    {
      "js": [
        "app.js"
      ],
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "web_accessible_resources": [
    "assets/128.png"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}