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 |
Eメール | [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" } } |