Circle reader

Circle reader

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

Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_name__",
  "version": "2.8.1",
  "manifest_version": 2,
  "description": "__MSG_description__",
  "author": "ranhe<wenguang.fe@gmail.com>",
  "background": {
    "scripts": [
      "worker.js"
    ],
    "persistent": true
  },
  "permissions": [
    "contextMenus",
    "<all_urls>"
  ],
  "browser_action": {
    "default_icon": {
      "16": "icons/16-default.png",
      "32": "icons/32-default.png"
    }
  },
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "default_locale": "en",
  "options_page": "option.html",
  "homepage_url": "https://circlereader.com",
  "content_scripts": [
    {
      "js": [
        "app.js"
      ],
      "all_frames": false,
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "web_accessible_resources": [
    "widget/*.css"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}