Easy Share

Easy Share

Share the current link on: Twitter, Facebook Google+, Pinterest, Linkedin, Tumblr or Gmail. Just that simple.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Easy Share",
  "version": "1.8.1",
  "description": "Share the current link on: Twitter, Facebook Google+, Pinterest, Linkedin, Tumblr or Gmail. Just that simple.",
  "icons": {
    "128": "icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*"
      ],
      "js": [
        "take-screen.js"
      ]
    }
  ],
  "permissions": [
    "tabs"
  ],
  "page_action": {
    "default_name": "Easy Share",
    "default_icon": "marker.png",
    "default_popup": "popup.html"
  },
  "manifest_version": 2
}