AddToAny: Share Anywhere

AddToAny: Share Anywhere

Share to Facebook, Mastodon, email, and any other sharing or saving service quickly and easily with one share button.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AddToAny: Share Anywhere",
  "short_name": "AddToAny",
  "version": "3.5.2",
  "manifest_version": 3,
  "minimum_chrome_version": "88",
  "description": "Share to Facebook, Mastodon, email, and any other sharing or saving service quickly and easily with one share button.",
  "background": {
    "service_worker": "worker.js",
    "type": "module"
  },
  "action": {
    "default_icon": {
      "19": "images/addtoany_19.png",
      "38": "images/addtoany_38.png"
    },
    "default_title": "AddToAny",
    "default_popup": "popup.html"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+S",
        "mac": "MacCtrl+Shift+S"
      },
      "description": "Open AddToAny to share the current page"
    }
  },
  "icons": {
    "16": "images/addtoany_16.png",
    "32": "images/addtoany_32.png",
    "48": "images/addtoany_48.png",
    "128": "images/addtoany_128.png"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "options_page": "options.html",
  "permissions": [
    "activeTab",
    "contextMenus",
    "scripting",
    "storage"
  ]
}