Basket

Basket

Easily save and share your favorite links through Basket!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Basket",
  "short_name": "Basket",
  "version": "0.9.9.9",
  "description": "Easily save and share your favorite links through Basket!",
  "permissions": [
    "tabs",
    "*://*/*",
    "http://*/",
    "http://*/*",
    "https://*/*",
    "http://*.facebook.com/*",
    "http://127.0.0.1:3000/*"
  ],
  "browser_action": {
    "default_icon": "/icons/basketgreen128.png",
    "default_title": "Basket",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "scripts/jquery.min.js",
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "/icons/basketgreen16.png",
    "48": "/icons/basketgreen48.png",
    "128": "/icons/basketgreen128.png"
  }
}