Pushsafer

Pushsafer

Pushsafer for Google Chrome

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "128.png",
    "default_title": "__MSG_appDefaultTitle__"
  },
  "content_scripts": [
    {
      "js": [
        "content_script.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "icons": {
    "128": "128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "options_page": "options.html",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "contextMenus"
  ],
  "version": "1.1.4"
}