Mastodon – Simplified Federation!

Mastodon – Simplified Federation!

Simplifies following or interacting with other users on remote Mastodon instances in the Fediverse. It skips the “Enter your Mastodon handle” popup and takes you to your own “home” instance, without entering your Mastodon handle on remote instances.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "short_name": "__MSG_extensionNameShort__",
  "version": "2.2",
  "author": "rugk",
  "description": "__MSG_extensionDescription__",
  "homepage_url": "https://github.com/rugk/mastodon-simplified-federation",
  "content_security_policy": "default-src 'self'; connect-src https:",
  "icons": {
    "16": "icons/icon.svg",
    "32": "icons/icon.svg",
    "48": "icons/icon.svg",
    "96": "icons/icon.svg"
  },
  "default_locale": "en",
  "options_ui": {
    "page": "options/options.html",
    "browser_style": true
  },
  "background": {
    "page": "background/background.html"
  },
  "permissions": [
    "storage",
    "webRequest",
    "notifications",
    "http://*/*",
    "https://*/*"
  ],
  "optional_permissions": [
    "tabs"
  ],
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "79.0"
    }
  }
}