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 |
官方網址 | 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 |
電子郵箱 | [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\/*" ] } } |