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 |
电子邮箱 | [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\/*" ] } } |