WebHistory

WebHistory

Show graphical web page history

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "WebHistory",
  "short_name": "WebHistory",
  "version": "1.0.3",
  "description": "Show graphical web page history",
  "author": "Michael Koch",
  "homepage_url": "https://d3v.one/webhistory/",
  "icons": {
    "16": "images/history_16.png",
    "48": "images/history_48.png",
    "128": "images/history_128.png"
  },
  "permissions": [
    "<all_urls>",
    "downloads",
    "storage",
    "identity",
    "unlimitedStorage",
    "tabs",
    "activeTab",
    "bookmarks"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true,
    "open_in_tab": false
  },
  "background": {
    "scripts": [
      "jshashtable.js",
      "md5.js",
      "pref.js",
      "bitmap.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [],
      "js": [
        "pref.js",
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "19": "images/history_19.png",
      "38": "images/history_38.png"
    },
    "default_title": "WebHistory"
  },
  "web_accessible_resources": [
    "images/*.png",
    "mimetype/*.png",
    "skin/*.png"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}