Mastodon Handles in Twitter
A helper to find people on Twitter that use Mastodon.
什么是Mastodon Handles in Twitter?
Mastodon Handles in Twitter是由Lennard Scheibel开发的Chrome扩展程序,该扩展的主要功能是“A helper to find people on Twitter that use Mastodon.”。
扩展截图
下载Mastodon Handles in Twitter扩展crx文件
下载Mastodon Handles in Twitter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Mastodon Handles in Twitter |
ID | ncgejfiheecflhpoifeembagnjgigioi |
官方URL | https://chromewebstore.google.com/detail/mastodon-handles-in-twitt/ncgejfiheecflhpoifeembagnjgigioi |
简介 | A helper to find people on Twitter that use Mastodon. |
文件大小 | 11.34 KB |
安装次数 | 130 |
当前版本 | 1.2.1 |
更新时间 | 2023-12-02 |
上架时间 | 2022-11-15 |
评分 | 4.00/5 共3次评分 |
开发者 | Lennard Scheibel |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/lscheibel/mastodon-handles-in-twitter |
帮助页面URL | https://github.com/lscheibel/mastodon-handles-in-twitter/issues |
支持的语言 | 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" } } |