Mastodon Handles in Twitter
A helper to find people on Twitter that use Mastodon.
What is Mastodon Handles in Twitter?
Mastodon Handles in Twitter is a Chrome extension developed by Lennard Scheibel, and its main feature is "A helper to find people on Twitter that use Mastodon.".
Extension Screenshots
Download Mastodon Handles in Twitter Extension CRX File
Download Mastodon Handles in Twitter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Mastodon Handles in Twitter |
ID | ncgejfiheecflhpoifeembagnjgigioi |
Official URL | https://chromewebstore.google.com/detail/mastodon-handles-in-twitt/ncgejfiheecflhpoifeembagnjgigioi |
Description | A helper to find people on Twitter that use Mastodon. |
File Size | 11.34 KB |
Installation Count | 130 |
Current Version | 1.2.1 |
Last Updated | 2023-12-02 |
Publish Date | 2022-11-15 |
Rating | 4.00/5 Total 3 Ratings |
Developer | Lennard Scheibel |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/lscheibel/mastodon-handles-in-twitter |
Help Page URL | https://github.com/lscheibel/mastodon-handles-in-twitter/issues |
Supported Languages | 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" } } |