Mastodon Handles in Twitter
A helper to find people on Twitter that use Mastodon.
Wat is Mastodon Handles in Twitter?
Mastodon Handles in Twitter is een Chrome-extensie ontwikkeld door Lennard Scheibel, en de belangrijkste functie is "A helper to find people on Twitter that use Mastodon.".
Extensie Screenshots
Download het CRX-bestand van de extensie Mastodon Handles in Twitter
Download Mastodon Handles in Twitter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This extension adds a little mastodon icon next to users that mention their mastodon handle in their bio. Simply click the icon to go to their mastodon account.
Basisinformatie over de Extensie
Naam | Mastodon Handles in Twitter |
ID | ncgejfiheecflhpoifeembagnjgigioi |
Officiële URL | https://chromewebstore.google.com/detail/mastodon-handles-in-twitt/ncgejfiheecflhpoifeembagnjgigioi |
Beschrijving | A helper to find people on Twitter that use Mastodon. |
Bestandsgrootte | 11.34 KB |
Aantal Installaties | 130 |
Huidige Versie | 1.2.1 |
Laatst Bijgewerkt | 2023-12-02 |
Publicatiedatum | 2022-11-15 |
Beoordeling | 4.00/5 Totaal 3 Beoordelingen |
Ontwikkelaar | Lennard Scheibel |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/lscheibel/mastodon-handles-in-twitter |
Help Pagina-URL | https://github.com/lscheibel/mastodon-handles-in-twitter/issues |
Ondersteunde Talen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Mastodon Handles in Twitter", "description": "A helper to find people on Twitter that use Mastodon.", "version": "1.2.1", "manifest_version": 3, "permissions": [ "https:\/\/*.twitter.com\/*", "scripting" ], "host_permissions": [ "https:\/\/*.twitter.com\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.twitter.com\/*" ], "css": [ "styles.css" ] } ], "action": { "default_icon": "icon.png" } } |