Share to Facebook

Share to Facebook

Easily share any link to Facebook, Groups, and Messenger - Click on the Facebook button at any time when you're on a website, and…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "version": "1.0.1",
  "default_locale": "en_US",
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon/fb_flat_blue_50.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "icons": {
    "16": "icon/fb_flat_blue_16.png"
  },
  "permissions": [
    "tabs",
    "contextMenus"
  ]
}