Mark As Read

Mark As Read

Mark a page as read by clicking on the extension icon.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Mark As Read",
  "version": "1.0.0",
  "description": "Mark a page as read by clicking on the extension icon. ",
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "browser_action": {},
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "commands": {
    "mark_page": {
      "suggested_key": {
        "default": "Ctrl+Shift+Z"
      },
      "description": "Mark/unmark the current page"
    }
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "downloads",
    "unlimitedStorage"
  ],
  "options_page": "options.html"
}