DOM Distiller Reading Mode

DOM Distiller Reading Mode

Distill and display only the important content to enjoy a more focused reading experience

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_name__",
  "short_name": "__MSG_short_name__",
  "description": "__MSG_description__",
  "version": "1.9",
  "minimum_chrome_version": "60",
  "icons": {
    "16": "icons/extension.svg-16.png",
    "32": "icons/extension.svg-32.png",
    "48": "icons/extension.svg-48.png",
    "128": "icons/extension.svg-128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "browser_action": {
    "default_icon": {
      "16": "icons/browserAction/inactive.svg-16.png",
      "19": "icons/browserAction/inactive.svg-19.png",
      "24": "icons/browserAction/inactive.svg-24.png",
      "32": "icons/browserAction/inactive.svg-32.png"
    },
    "default_title": "__MSG_browser_action_tooltip_inactive__"
  },
  "options_ui": {
    "page": "options/options.html",
    "chrome_style": true
  },
  "web_accessible_resources": [
    "external/chromium/src/components/dom_distiller/core/html/dom_distiller_viewer.html"
  ]
}