Mastodon Handles in Twitter
A helper to find people on Twitter that use Mastodon.
Mastodon Handles in Twitter là gì?
Mastodon Handles in Twitter là một tiện ích mở rộng Chrome được phát triển bởi Lennard Scheibel, và tính năng chính của nó là "A helper to find people on Twitter that use Mastodon.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Mastodon Handles in Twitter
Tải xuống các tệp mở rộng Mastodon Handles in Twitter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Mastodon Handles in Twitter |
ID | ncgejfiheecflhpoifeembagnjgigioi |
URL Chính Thức | https://chromewebstore.google.com/detail/mastodon-handles-in-twitt/ncgejfiheecflhpoifeembagnjgigioi |
Mô tả | A helper to find people on Twitter that use Mastodon. |
Kích Thước Tệp | 11.34 KB |
Số Lần Cài Đặt | 130 |
Phiên Bản Hiện Tại | 1.2.1 |
Cập Nhật Lần Cuối | 2023-12-02 |
Ngày Phát Hành | 2022-11-15 |
Đánh Giá | 4.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Lennard Scheibel |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/lscheibel/mastodon-handles-in-twitter |
URL Trang Trợ Giúp | https://github.com/lscheibel/mastodon-handles-in-twitter/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |