Twitter Safe Checkmark
Helps you distinguish between actually verified and paid Twitter accounts
Twitter Safe Checkmarkคืออะไร?
Twitter Safe Checkmark เป็นส่วนขยายของ Chrome ที่พัฒนาโดย deltaspider และคุณลักษณะหลักของมันคือ "Helps you distinguish between actually verified and paid Twitter accounts"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitter Safe Checkmark
ดาวน์โหลดไฟล์ส่วนขยาย 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\/*" ] } ] } |