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 |
官方網址 | 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\/*" ] } ] } |