ClickHint

ClickHint

Better browsing - Inteligent alternative to bookmark tools & history

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ClickHint",
  "version": "0.9.7.1",
  "description": "Better browsing - Inteligent alternative to bookmark tools & history",
  "background": {
    "page": "background.html"
  },
  "options_page": "popup.html",
  "web_accessible_resources": [
    "images/greenScore.png",
    "images/redScore.png",
    "images/delete.png",
    "images/stop.png",
    "images/hideAll.png",
    "images/redScore.png"
  ],
  "permissions": [
    "tabs",
    "history",
    "bookmarks",
    "notifications",
    "http://*/*",
    "https://*/*",
    "unlimitedStorage"
  ],
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_title": "ClickHint",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "http://localhost/"
      ],
      "css": [
        "css/content.css",
        "css/shared.css"
      ],
      "js": [
        "scripts/jquery-1.8.3.js",
        "scripts/md5.js",
        "content.min.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}