My Reading Mode

My Reading Mode

Displays only certain areas of a web page to make the page easier to read.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_title__",
  "description": "__MSG_about__",
  "author": "TNK Software",
  "homepage_url": "https://www.tnksoft.com/",
  "default_locale": "en",
  "version": "2.0",
  "icons": {
    "512": "res/icon.png"
  },
  "options_ui": {
    "page": "settings/index.htm",
    "open_in_tab": false
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "doc_start.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "doc_idle.js"
      ],
      "css": [
        "style.css"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "permissions": [
    "storage",
    "contextMenus"
  ]
}