Readwise Highlighter

Readwise Highlighter

The Readwise Highlighter is the official browser extension made by and maintained by the Readwise team that saves articles to your Reader account and enables you to optionally highlight the open web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Readwise Highlighter",
  "homepage_url": "https://readwise.io",
  "version": "0.15.23",
  "manifest_version": 2,
  "minimum_chrome_version": "67",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "permissions": [
    "<all_urls>",
    "activeTab",
    "background",
    "contextMenus",
    "notifications",
    "storage",
    "tabs",
    "unlimitedStorage"
  ],
  "description": "Save a page to Readwise Reader",
  "icons": {
    "128": "images/icon-128.png"
  },
  "browser_action": {},
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+R"
      }
    }
  },
  "content_scripts": [
    {
      "exclude_globs": [
        "https://ap.www.namecheap.com/*",
        "https://app.crowdmark.com/*",
        "https://app.dext.com/*",
        "https://local.readwise.io:3001/*",
        "https://local.readwise.io:8000/reader/extension*",
        "https://read.readwise.io/*",
        "https://read--*.readwise.io/*",
        "https://reader.readwise.io/*",
        "https://readwise.io/reader/extension*"
      ],
      "css": [
        "injection/index.css"
      ],
      "js": [
        "injection/index.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "background/index.js"
    ]
  }
}