Shout

Shout

Become a customer service advocate and use your social influence to demand for better customer service.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Shout",
  "description": "Become a customer service advocate  and use your social influence to demand for better customer service.",
  "version": "1.5",
  "content_security_policy": "script-src 'self' https://connect.facebook.net/; object-src 'self'",
  "background": {
    "page": "background.html"
  },
  "permissions": [
    "tabs",
    "notifications",
    "contextMenus",
    "https://*/*",
    "http://api.nevahold.me/*",
    "background"
  ],
  "browser_action": {
    "default_icon": "img/icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/jquery-1.9.1.js",
        "js/content_script.js"
      ]
    }
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+M",
        "mac": "Command+M",
        "chromeos": "Ctrl+M",
        "linux": "Ctrl+M"
      }
    }
  }
}