ReviewDB Twitter
Allows you to review other Twitter users
ReviewDB Twitterとは何ですか?
ReviewDB Twitterはmantikafasiによって開発されたChromeの拡張機能で、その主な機能は「Allows you to review other Twitter users」です。
拡張機能のスクリーンショット
ReviewDB Twitter拡張機能のCRXファイルをダウンロード
ReviewDB Twitter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
A extension which allows you to review other users. Anyone who has the extension will be able to see what you commented. Emoji artwork is based on flattened version of brain tweemoji (licensed under Creative Commons Attribution 4.0 International License. https://github.com/twitter/twemoji/blob/master/LICENSE-GRAPHICS)
拡張機能の基本情報
名前 | ReviewDB Twitter |
ID | kmgbgncbggoffjbefmnknffpofcajohj |
公式URL | https://chromewebstore.google.com/detail/reviewdb-twitter/kmgbgncbggoffjbefmnknffpofcajohj |
説明 | Allows you to review other Twitter users |
ファイルサイズ | 56.42 KB |
インストール数 | 88 |
現在のバージョン | 0.1.1 |
最終更新日 | 2023-06-06 |
公開日 | 2023-06-06 |
評価 | 3.40/5 合計 5 レビュー |
開発者 | mantikafasi |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://reviewdb.mantikafasi.dev |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ReviewDB Twitter", "version": "0.1.1", "description": "Allows you to review other Twitter users", "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "web_accessible_resources": [ { "resources": [ "bundle.js", "bundle.css" ], "matches": [ "https:\/\/twitter.com\/*" ] }, { "resources": [ "authpage.html" ], "matches": [ "https:\/\/manti.vendicated.dev\/*" ] } ], "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "run_at": "document_start", "js": [ "content.js" ] }, { "matches": [ "https:\/\/manti.vendicated.dev\/api\/reviewdb-twitter\/auth*" ], "js": [ "auth.js" ] } ], "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "externally_connectable": { "matches": [ "https:\/\/manti.vendicated.dev\/api\/reviewdb-twitter\/auth", "https:\/\/twitter.com\/*" ] } } |