Twitter Safe Checkmark
Helps you distinguish between actually verified and paid Twitter accounts
什么是Twitter Safe Checkmark?
Twitter Safe Checkmark是由deltaspider开发的Chrome扩展程序,该扩展的主要功能是“Helps you distinguish between actually verified and paid Twitter accounts”。
扩展截图
下载Twitter Safe Checkmark扩展crx文件
下载Twitter Safe Checkmark扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Twitter Safe Checkmark Quickly see if a Twitter account is officially verified (the way it used to be), if the account holder simply paid for the blue checkmark. Also shows official business or government accounts. You can choose a different color for each Twitter account type.
扩展基本信息
名称 | Twitter Safe Checkmark |
ID | mpfelaapmlbgjblkdmdijaokggfdmfgj |
官方URL | https://chromewebstore.google.com/detail/twitter-safe-checkmark/mpfelaapmlbgjblkdmdijaokggfdmfgj |
简介 | Helps you distinguish between actually verified and paid Twitter accounts |
文件大小 | 66.82 KB |
安装次数 | 210 |
当前版本 | 1.0.5 |
更新时间 | 2023-03-23 |
上架时间 | 2022-11-14 |
评分 | 3.80/5 共5次评分 |
开发者 | deltaspider |
电子邮箱 | [email protected] |
付费类型 | free |
隐私政策页面URL | https://www.bubblespider.com/privacy-policy |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Twitter Safe Checkmark", "version": "1.0.5", "description": "Helps you distinguish between actually verified and paid Twitter accounts", "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "js": [ "import-content.js" ], "matches": [ "https:\/\/twitter.com\/*", "https:\/\/www.twitter.com\/*", "https:\/\/mobile.twitter.com\/*" ] } ], "action": { "default_popup": "pages\/popup\/index.html", "default_icon": { "16": "img\/logo16.png", "32": "img\/logo32.png", "48": "img\/logo48.png", "128": "img\/logo128.png" } }, "icons": { "48": "img\/logo48.png", "128": "img\/logo128.png" }, "permissions": [ "storage" ], "web_accessible_resources": [ { "resources": [ "script_twitter_check.js", "img\/*.png", "img\/*.svg", "pages\/*.html" ], "matches": [ "https:\/\/twitter.com\/*", "https:\/\/mobile.twitter.com\/*" ] }, { "resources": [ "chunks\/*-*.js", "content.js" ], "matches": [ "https:\/\/twitter.com\/*", "https:\/\/www.twitter.com\/*", "https:\/\/mobile.twitter.com\/*" ] } ] } |