TwitFrens
Get mutual connections as a list on Twitter.
TwitFrensとは何ですか?
TwitFrensはTwitfrensによって開発されたChromeの拡張機能で、その主な機能は「Get mutual connections as a list on Twitter.」です。
拡張機能のスクリーンショット
TwitFrens拡張機能のCRXファイルをダウンロード
TwitFrens拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Find mutual followers on Twitter easily. Twitfrens is a chrome extension for Twitter to help users find mutual followers with anyone. It's a tool that will help you find if you have a connection with any account on Twitter. Mutual followers with an account are people that follow you and are followed by the account. Example: Account 1 has 1K followers and 500 followingd. Twitfrens will tell you among the 500 following, which accounts are following you as well. It tells the user the first degree connection with any Twitter account.
拡張機能の基本情報
名前 | TwitFrens |
ID | bcpjnadjkokegkppfmacbmohjgjdbifn |
公式URL | https://chromewebstore.google.com/detail/twitfrens/bcpjnadjkokegkppfmacbmohjgjdbifn |
説明 | Get mutual connections as a list on Twitter. |
ファイルサイズ | 158 KB |
インストール数 | 53 |
現在のバージョン | 1.0.2 |
最終更新日 | 2022-11-10 |
公開日 | 2022-11-10 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | Twitfrens |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://twitfrens.webflow.io/ |
対応言語 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TwitFrens", "description": "Get mutual connections as a list on Twitter.", "version": "1.0.2", "manifest_version": 3, "icons": { "16": ".\/icons\/icon16.png", "32": ".\/icons\/icon32.png", "128": ".\/icons\/icon128.png" }, "action": { "default_icon": { "16": ".\/icons\/icon16.png", "32": ".\/icons\/icon32.png", "128": ".\/icons\/icon128.png" } }, "background": { "service_worker": ".\/background.js" }, "permissions": [ "tabs" ], "content_scripts": [ { "matches": [ "https:\/\/*.twitter.com\/*" ], "run_at": "document_end", "js": [ ".\/content-script.js", ".\/tailwind.js" ], "css": [ ".\/index.css" ] } ] } |