Booklight

Booklight

Easily add bookmarks to any category. Includes spotlight-like search with mouse/keyboard support. Default key: control/ctrl+b

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Booklight",
  "description": "Easily add bookmarks to any category. Includes spotlight-like search with mouse/keyboard support. Default key: control/ctrl+b",
  "version": "2.2.2",
  "author": "Ahmad Assaf",
  "homepage_url": "https://github.com/ahmadassaf/booklight",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "icons": {
    "16": "icons/booklight-16.png",
    "48": "icons/booklight-48.png",
    "128": "icons/booklight-128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "icons/booklight-16.png",
      "38": "icons/booklight-16.png"
    },
    "default_title": "Booklight"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "css/booklight.css",
        "css/fontello.css"
      ],
      "js": [
        "lib/jquery.js",
        "lib/fuse.js",
        "lib/keyboard.js",
        "helper.js",
        "booklight.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "css/booklight.css",
    "css/fontello.css",
    "lib/keymaster.js",
    "font/fontello.eot",
    "font/fontello.svg",
    "font/fontello.ttf",
    "font/fontello.woff"
  ],
  "permissions": [
    "bookmarks",
    "tabs",
    "storage",
    "unlimitedStorage",
    "http://fonts.gstatic.com/",
    "https://fonts.gstatic.com/"
  ]
}