Wishlist

Wishlist

The Wishlist extension is made to be used alongside the WIshlist app (located at w1shlist.herokuapp.com). This extension simply…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Wishlist",
  "short_name": "Add things to your wishlist.",
  "version": "1.0",
  "browser_action": {
    "default_title": "Wishlist",
    "default_icon": "icons/icon21.png"
  },
  "icons": {
    "16": "icons/icon21.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "scripts": [
      "vendors/jquery.min.js",
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "tabs",
    "http://*/",
    "https://*/",
    "storage"
  ],
  "content_security_policy": "script-src 'self' https://w1shlist.herokuapp.com/; object-src 'self'"
}