Legacy Verified
Legacy Verified is a browser extension that enables you to view who previously was verified on Twitter
Legacy Verifiedとは何ですか?
Legacy Verifiedはrobert.spierによって開発されたChromeの拡張機能で、その主な機能は「Legacy Verified is a browser extension that enables you to view who previously was verified on Twitter」です。
拡張機能のスクリーンショット
Legacy Verified拡張機能のCRXファイルをダウンロード
Legacy Verified拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
The Legacy Verified Extension enables people to add a verified logo next to names of accounts on Twitter that were previously verified. Uses data provided by Travis Brown and initiated by Oliver Alexander. It is being developed by Robert Spier
拡張機能の基本情報
名前 | Legacy Verified |
ID | kpaemodmgoobmechkcplpffkpfbpebnm |
公式URL | https://chromewebstore.google.com/detail/legacy-verified/kpaemodmgoobmechkcplpffkpfbpebnm |
説明 | Legacy Verified is a browser extension that enables you to view who previously was verified on Twitter |
ファイルサイズ | 5.09 MB |
インストール数 | 275 |
現在のバージョン | 1.0.2 |
最終更新日 | 2023-04-27 |
公開日 | 2023-04-27 |
評価 | 5.00/5 合計 3 レビュー |
開発者 | robert.spier |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/roberrrt-s/legacy-verified-extension |
ヘルプページのURL | https://github.com/roberrrt-s/legacy-verified-extension/issues |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Legacy Verified", "version": "1.0.2", "description": "Legacy Verified is a browser extension that enables you to view who previously was verified on Twitter", "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "action": { "default_title": "Legacy Verified Extension", "default_popup": "popup.html" }, "web_accessible_resources": [ { "resources": [ "\/icons\/*.png", "legacy-verified.csv" ], "matches": [ "*:\/\/twitter.com\/*", "*:\/\/*.twitter.com\/*" ] } ], "content_scripts": [ { "matches": [ "*:\/\/twitter.com\/*" ], "run_at": "document_idle", "js": [ "content.js" ] }, { "matches": [ "*:\/\/*.twitter.com\/*" ], "run_at": "document_idle", "js": [ "content.js" ] } ] } |