Save to WebCull

Save to WebCull

A plugin that makes it easier to save websites to the WebCull bookmark manager.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Save to WebCull",
  "short_name": "WebCull",
  "version": "1.1.1",
  "description": "A plugin that makes it easier to save websites to the WebCull bookmark manager.",
  "permissions": [
    "webRequest",
    "webNavigation",
    "tabs",
    "cookies",
    "https://webcull.com/"
  ],
  "browser_action": {
    "default_title": "Add to WebCull",
    "default_icon": {
      "16": "images/webcull-16x.png",
      "32": "images/webcull-32x.png",
      "48": "images/webcull-48x.png",
      "128": "images/webcull-128x.png"
    },
    "default_popup": "views/bootstrap.html"
  },
  "background": {
    "scripts": [
      "js/lib/q.js",
      "js/lib/lib.js",
      "js/background/background.js"
    ],
    "persistent": true
  },
  "icons": {
    "16": "images/webcull-16x.png",
    "32": "images/webcull-32x.png",
    "48": "images/webcull-48x.png",
    "128": "images/webcull-128x.png"
  },
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' https://webcull.com/; object-src 'self'"
}