History Keeper

History Keeper

Keeping deleted and visited url history

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "History Keeper",
  "version": "1.2",
  "description": "Keeping deleted and visited url history",
  "permissions": [
    "storage",
    "history"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "deletedUrls.html",
    "default_icon": "images/get_started48.png"
  },
  "icons": {
    "16": "images/get_started16.png",
    "48": "images/get_started48.png",
    "128": "images/get_started128.png"
  },
  "manifest_version": 2
}