Historian

Historian

History on steroids

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Historian",
  "short_name": "Historian",
  "version": "0.0.3",
  "manifest_version": 2,
  "description": "History on steroids",
  "homepage_url": "https://github.com/rkvsraman/historian",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "page": "src/bg/background.html",
    "persistent": true
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "browser_action": {
    "default_icon": "icons/icon19.png",
    "default_title": "Historian",
    "default_popup": "src/browser_action/browser_action.html"
  },
  "permissions": [
    "tabs",
    "unlimitedStorage",
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "js/*.js",
    "css/*.css",
    "css/*.png",
    "bootstrap/*",
    "icons/*"
  ]
}