LinkHistory

LinkHistory

Show visited links

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "LinkHistory",
  "version": "1.1",
  "description": "Show visited links",
  "icons": {
    "32": "img/icon32.png",
    "48": "img/icon48.png",
    "64": "img/icon64.png",
    "128": "img/icon128.png",
    "256": "img/icon256.png"
  },
  "background": {
    "scripts": [
      "js/jquery-2.2.3.min.js",
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_title": "LinkHistory",
    "default_icon": "img/icon128.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/jquery-2.2.3.min.js",
        "js/script.js"
      ],
      "css": [
        "css/style.css"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage"
  ]
}