Eight Dollars
Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users.
Eight Dollars là gì?
Eight Dollars là một tiện ích mở rộng Chrome được phát triển bởi Walter Lim, và tính năng chính của nó là "Eight Dollars can help you tell the difference between actual verified accounts and twitter blue 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 Eight Dollars
Tải xuống các tệp mở rộng Eight Dollars 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
Eight Dollars helps Twitter users differentiate between users that paid for verification and users that were given Twitter Verification. Got an idea for a feature or issues using the extension? Visit https://github.com/wseagar/eight-dollars/issues
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Eight Dollars |
ID | fjbponfbognnefnmbffcfllkibbbobki |
URL Chính Thức | https://chromewebstore.google.com/detail/eight-dollars/fjbponfbognnefnmbffcfllkibbbobki |
Mô tả | Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users. |
Kích Thước Tệp | 3.25 MB |
Số Lần Cài Đặt | 10,000 |
Phiên Bản Hiện Tại | 2.0 |
Cập Nhật Lần Cuối | 2023-05-01 |
Ngày Phát Hành | 2022-11-12 |
Đánh Giá | 4.48/5 Tổng số 83 Đánh Giá |
Nhà Phát Triển | Walter Lim |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/wseagar/eight-dollars |
URL Trang Trợ Giúp | https://github.com/wseagar/eight-dollars |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Eight Dollars", "version": "2.0", "description": "Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users.", "icons": { "16": ".\/assets\/16.png", "32": ".\/assets\/32.png", "48": ".\/assets\/48.png", "256": ".\/assets\/256.png", "512": ".\/assets\/512.png" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*", "https:\/\/mobile.twitter.com\/*" ], "js": [ "content.js" ] } ], "web_accessible_resources": [ { "resources": [ "script.js", "search.js", "data\/verified.txt" ], "matches": [ "https:\/\/twitter.com\/*", "https:\/\/mobile.twitter.com\/*" ] } ], "action": { "default_icon": { "16": ".\/assets\/16.png", "32": ".\/assets\/32.png" }, "default_title": "Eight Dollars - Options", "default_popup": "options\/options.html" }, "permissions": [ "storage" ] } |