QuickSend

QuickSend

This extension lets users share web content with one click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "QuickSend",
  "description": "This extension lets users share web content with one click",
  "version": "1.12",
  "content_security_policy": "script-src 'self' https://connect.facebook.net; object-src 'self'",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "QuickSend"
  },
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "js": [
        "jquery-2.1.3.min.js",
        "background.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "gcm",
    "storage",
    "notifications",
    "tabs",
    "http://54.152.80.39:8080/*",
    "http://*.facebook.com/*",
    "https://ajax.googleapis.com/"
  ]
}