Markbook

Markbook

Collect, organize and search your favorites, upvotes and likes.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Markbook",
  "description": "Collect, organize and search your favorites, upvotes and likes.",
  "version": "0.31",
  "background": {
    "scripts": [
      "markbook.js"
    ],
    "pages": [
      "background.html"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery.js",
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "https://ajax.googleapis.com/",
    "webRequest",
    "<all_urls>"
  ]
}