Unclutter — Modern Reader Mode

Unclutter — Modern Reader Mode

Read, collect, and highlight articles with style.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Unclutter — Modern Reader Mode",
  "version": "1.7.10",
  "description": "Read and highlight articles with style.",
  "homepage_url": "https://github.com/lindylearn/unclutter",
  "icons": {
    "128": "assets/icon.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "<all_urls>",
    "contextMenus",
    "alarms"
  ],
  "optional_permissions": [
    "bookmarks"
  ],
  "options_ui": {
    "page": "settings-page/index.html"
  },
  "manifest_version": 2,
  "browser_specific_settings": {
    "gecko": {
      "id": "{8f8c4c52-216c-4c6f-aae0-c214a870d9d9}"
    }
  },
  "browser_action": {
    "default_title": "Unclutter Current Article (Alt+C)"
  },
  "background": {
    "page": "background/firefox-page.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script/boot.js"
      ],
      "css": [
        "content-script/pageview/content.css"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "content-script/pageview/content.css",
    "overlay/index.css",
    "overlay/indexDark.css",
    "overlay/outline/outlineDark.css",
    "data/siteTweaks.css",
    "data/siteTweaksDark.css",
    "sidebar/*",
    "review/*",
    "modal/index.html",
    "modal/index.css",
    "modal/dark.css",
    "modal/index.js",
    "modal/messaging.js",
    "settings-page/indexFirefoxOverride.css",
    "assets/**"
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+C"
      }
    }
  }
}