ReviewDB Twitter
Allows you to review other Twitter users
ReviewDB Twitter là gì?
ReviewDB Twitter là một tiện ích mở rộng Chrome được phát triển bởi mantikafasi, và tính năng chính của nó là "Allows you to review other Twitter users".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng ReviewDB Twitter
Tải xuống các tệp mở rộng ReviewDB Twitter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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)
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | ReviewDB Twitter |
ID | kmgbgncbggoffjbefmnknffpofcajohj |
URL Chính Thức | https://chromewebstore.google.com/detail/reviewdb-twitter/kmgbgncbggoffjbefmnknffpofcajohj |
Mô tả | Allows you to review other Twitter users |
Kích Thước Tệp | 56.42 KB |
Số Lần Cài Đặt | 88 |
Phiên Bản Hiện Tại | 0.1.1 |
Cập Nhật Lần Cuối | 2023-06-06 |
Ngày Phát Hành | 2023-06-06 |
Đánh Giá | 3.40/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | mantikafasi |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://reviewdb.mantikafasi.dev |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } } |