pouuch

pouuch

Get every scrap into your pouuch

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "pouuch",
  "version": "3.0.4",
  "description": "Get every scrap into your pouuch",
  "browser_action": {
    "default_icon": "img/icon_disabled.png",
    "default_popup": "index.html",
    "default_title": "Scrap in your POUUCH"
  },
  "permissions": [
    "storage",
    "http://*/*",
    "https://*/*",
    "tabs",
    "background"
  ],
  "background": {
    "scripts": [
      "js/config/messageListeners.js",
      "js/config/fblogin.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*"
      ],
      "js": [
        "js/config/config.js",
        "js/lib/checkIsScrapped.js"
      ]
    }
  ]
}