Tranquility Reader

Tranquility Reader

Tranquility Reader improves the readability of web articles by removing unnecessary elements

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_extensionName__",
  "version": "3.0.21",
  "description": "__MSG_extensionDescription__",
  "homepage_url": "https://tranquility.ushnisha.com/",
  "icons": {
    "128": "icons/tranquility-128.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "alarms",
    "contextMenus"
  ],
  "browser_action": {
    "default_icon": "icons/tranquility-128.png",
    "default_title": "__MSG_extensionBrowserActionTitle__"
  },
  "web_accessible_resources": [
    "background/tranquility.html",
    "css/tranquility.css",
    "icons/*.png"
  ],
  "options_ui": {
    "page": "options/tranquility_options.html",
    "open_in_tab": false
  },
  "background": {
    "scripts": [
      "background/tranquility_bg_db_interface.js",
      "background/tranquility_bg_message_manager.js",
      "background/tranquility_presets.js",
      "background/tranquility_bg_common_functions.js",
      "background/tranquility_bg_context_menu.js"
    ]
  },
  "commands": {
    "run-tranquility": {
      "suggested_key": {
        "default": "Ctrl+Shift+T"
      },
      "description": "__MSG_extensionCommandRunDescription__"
    },
    "show-tranquility-preferences": {
      "suggested_key": {
        "default": "Ctrl+Shift+J"
      },
      "description": "__MSG_extensionCommandShowPreferencesDescription__"
    },
    "show-tranquility-offline-pages": {
      "suggested_key": {
        "default": "Ctrl+Shift+K"
      },
      "description": "__MSG_extensionCommandShowOfflinePagesDescription__"
    }
  },
  "default_locale": "en"
}