Read Only Twitter
Enhance your Twitter experience by preventing yourself from actually interacting.
Read Only Twitterคืออะไร?
Read Only Twitter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย TheCleric และคุณลักษณะหลักของมันคือ "Enhance your Twitter experience by preventing yourself from actually interacting."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Read Only Twitter
ดาวน์โหลดไฟล์ส่วนขยาย Read Only Twitter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
By not interacting you're less likely to get sucked into useless arguments, which will make you happier in the long run. Allow your Twitter stream to flow past you, and then let it go. Options to disable tweets, retweets, likes, and direct messages.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Read Only Twitter |
ID | cemhfjoonebpbnddchcopobdgdngnhdl |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/read-only-twitter/cemhfjoonebpbnddchcopobdgdngnhdl |
คำอธิบาย | Enhance your Twitter experience by preventing yourself from actually interacting. |
ขนาดไฟล์ | 164 KB |
จำนวนการติดตั้ง | 56 |
เวอร์ชันปัจจุบัน | 1.0.1 |
อัปเดตครั้งล่าสุด | 2020-08-24 |
วันที่เผยแพร่ | 2020-08-21 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | TheCleric |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/TheCleric/ReadOnlyTwitter |
URL หน้าช่วยเหลือ | https://github.com/TheCleric/ReadOnlyTwitter |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Read Only Twitter", "version": "1.0.1", "description": "Enhance your Twitter experience by preventing yourself from actually interacting.", "manifest_version": 2, "permissions": [ "storage" ], "options_ui": { "page": "readOnlyTwitterOptions.html", "open_in_tab": false }, "browser_action": { "default_popup": "readOnlyTwitterOptions.html", "default_icon": { "128": "icons\/ReadOnlyTwitter128.png", "512": "icons\/ReadOnlyTwitter.png" } }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "readOnlyTwitter.js" ] } ], "content_security_policy": "script-src 'self' https:\/\/cdnjs.cloudflare.com https:\/\/www.googletagmanager.com; object-src 'self'", "icons": { "128": "icons\/ReadOnlyTwitter128.png", "512": "icons\/ReadOnlyTwitter.png" } } |