Saveji

Saveji

Online shopping deals and coupons

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Saveji",
  "description": "Online shopping deals and coupons",
  "version": "1.8",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "icon16.png",
    "default_title": "Saveji",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": false,
      "js": [
        "jquery.js",
        "popup.js",
        "background.js"
      ],
      "css": [
        "style.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "jquery.js",
    "style.css",
    "popup.html"
  ],
  "permissions": [
    "storage",
    "contextMenus",
    "tabs",
    "identity",
    "<all_urls>",
    "alarms",
    "notifications",
    "background",
    "declarativeContent",
    "webNavigation",
    "activeTab"
  ]
}