Mark Selected Links As Visited

Mark Selected Links As Visited

Marks selected links as visited. If nothing is selected - marks all links on page as visited.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "Dima PM",
  "manifest_version": 2,
  "name": "Mark Selected Links As Visited",
  "version": "0.3.1",
  "description": "Marks selected links as visited. If nothing is selected - marks all links on page as visited",
  "browser_action": {
    "default_icon": {
      "19": "icon19.png"
    }
  },
  "commands": {
    "_execute_browser_action": {}
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "activeTab",
    "history",
    "contextMenus"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{ea63f547-d68a-469b-826e-eac58d64a641}"
    }
  }
}