Twitter Sanitizer
Improve your Twitter experience by hiding different features.
Twitter Sanitizerคืออะไร?
Twitter Sanitizer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Hristiyan Dodov และคุณลักษณะหลักของมันคือ "Improve your Twitter experience by hiding different features."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitter Sanitizer
ดาวน์โหลดไฟล์ส่วนขยาย Twitter Sanitizer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension allows you to hide different parts of Twitter. The most notable feature is removing followers, likes and pretty much all numbers. You can also make you feed more compact by removing the action buttons (reply, retweet, like) from each tweet. However, you can still do these actions after clicking on a tweet. Here's the full list of toggles: - Sidebars - Profile counters - Profile card stats - Post RTs and likes - Feed post actions - Followers you know - Notification faces
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Twitter Sanitizer |
ID | amdinnnilgkcpgohiijcejpnhgngmfdl |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/twitter-sanitizer/amdinnnilgkcpgohiijcejpnhgngmfdl |
คำอธิบาย | Improve your Twitter experience by hiding different features. |
ขนาดไฟล์ | 29.21 KB |
จำนวนการติดตั้ง | 176 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2017-06-26 |
วันที่เผยแพร่ | 2017-06-25 |
คะแนน | 4.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Hristiyan Dodov |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitter Sanitizer", "version": "1.1", "author": "Hristiyan Dodov", "description": "Improve your Twitter experience by hiding different features.", "icons": { "16": "icon-16.png", "32": "icon-32.png", "64": "icon-64.png", "128": "icon-128.png" }, "browser_action": { "default_popup": "popup.html" }, "permissions": [ "storage" ], "content_scripts": [ { "run_at": "document_start", "js": [ "hider.js" ], "matches": [ "http:\/\/twitter.com\/*", "https:\/\/twitter.com\/*" ] } ] } |