Eight Dollars
Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users.
什么是Eight Dollars?
Eight Dollars是由Walter Lim开发的Chrome扩展程序,该扩展的主要功能是“Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users.”。
扩展截图
下载Eight Dollars扩展crx文件
下载Eight Dollars扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | Eight Dollars |
ID | fjbponfbognnefnmbffcfllkibbbobki |
官方URL | https://chromewebstore.google.com/detail/eight-dollars/fjbponfbognnefnmbffcfllkibbbobki |
简介 | Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users. |
文件大小 | 3.25 MB |
安装次数 | 10,000 |
当前版本 | 2.0 |
更新时间 | 2023-05-01 |
上架时间 | 2022-11-12 |
评分 | 4.48/5 共83次评分 |
开发者 | Walter Lim |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/wseagar/eight-dollars |
帮助页面URL | https://github.com/wseagar/eight-dollars |
支持的语言 | 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" ] } |