Mastodon Link

Extension to make it easy to visit mastodon profiles from your instance

Vad är Mastodon Link?

Mastodon Link är en Chrome-tillägg utvecklad av masrly, och dess huvudfunktion är "Extension to make it easy to visit mastodon profiles from your instance".

Tilläggsskärmbilder

screenshot

Ladda ner Mastodon Link-förlängningens CRX-fil

Ladda ner Mastodon Link-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Adds a clickable mastodon icon next to mastodon style usernames (@[email protected]) that directs you to your own mastodon instance for ease of following.                    

Grundläggande Information om Tillägg

Namn Mastodon Link Mastodon Link
ID nlfdgcdfjnobjocicnddjghdbmgglame
Officiell webbadress https://chromewebstore.google.com/detail/mastodon-link/nlfdgcdfjnobjocicnddjghdbmgglame
Beskrivning Extension to make it easy to visit mastodon profiles from your instance
Filstorlek 20.41 KB
Antal Installationer 544
Aktuell Version 1.2.1
Senast Uppdaterad 2022-11-28
Publiceringsdatum 2022-11-23
Betyg 4.75/5 Totalt 4 Betyg
Utvecklare masrly
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/masrly/mastodon-link
Hjälpsida URL https://github.com/masrly/mastodon-link
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mastodon Link",
    "version": "1.2.1",
    "author": "Alexander Haslam <@[email protected]>",
    "manifest_version": 3,
    "description": "Extension to make it easy to visit mastodon profiles from your instance",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    }
}