Share to Mastodon

Share to Mastodon

Share links to Mastodon in one click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Share to Mastodon",
  "version": "2.1",
  "author": "Corbin Davenport",
  "homepage_url": "https://github.com/corbindavenport/share-to-mastodon",
  "description": "Share links to Mastodon in one click",
  "options_ui": {
    "page": "settings.html",
    "open_in_tab": true
  },
  "action": {
    "default_icon": {
      "32": "img/icon_x32.png",
      "48": "img/icon_action_x48.png",
      "128": "img/icon_action_x128.png"
    },
    "default_title": "Share this page to Mastodon"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": "Ctrl+Shift+S",
      "description": "Share current page on Mastodon"
    }
  },
  "permissions": [
    "contextMenus",
    "storage",
    "activeTab"
  ],
  "minimum_chrome_version": "93",
  "background": {
    "service_worker": "js/background.js"
  },
  "icons": {
    "32": "img/icon_x32.png",
    "48": "img/icon_x48.png",
    "128": "img/icon_x128.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}