Add to Wishlist Button | Wishtack

Add to Wishlist Button | Wishtack

Fill your Wishtack wishlist from any website and let your friends offer you gifts or contribute to the money pot we create for you.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "Wishtack",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "2.18.4",
  "manifest_version": 2,
  "default_locale": "en",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content/scripts/chrome-extension-is-installed.js",
        "content/scripts/scrap-product.js",
        "content/scripts/app.js"
      ]
    }
  ],
  "icons": {
    "16": "images/icon_16.png",
    "128": "images/icon_128.png"
  },
  "permissions": [
    "*://*/*",
    "activeTab",
    "contextMenus"
  ]
}