Blind Twitter
Keeps tweet authors hidden until you like or retweet them.
Blind Twitterคืออะไร?
Blind Twitter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Avneesh Kohli และคุณลักษณะหลักของมันคือ "Keeps tweet authors hidden until you like or retweet them."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Blind Twitter
ดาวน์โหลดไฟล์ส่วนขยาย Blind Twitter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Twitter is an incredible platform, but it is also one where the diffusion of ideas is biased towards those with influence. Blind Twitter aims to solve this problem. By keeping tweet authors and Like/Retweet counts hidden, you get to decide free of outside signal the quality of a tweet. Once you engage with a tweet by liking, retweeting, replying to it, we'll reveal who wrote it and where it's from. We think this will genuinely change how you interact with your Twitter feed.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ahnfpebnkocjfnljkeibilgochlohpge |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/ahnfpebnkocjfnljkeibilgochlohpge |
คำอธิบาย | Keeps tweet authors hidden until you like or retweet them. |
ขนาดไฟล์ | 50.97 KB |
จำนวนการติดตั้ง | 46 |
เวอร์ชันปัจจุบัน | 1.2.3 |
อัปเดตครั้งล่าสุด | 2016-02-08 |
วันที่เผยแพร่ | 2016-02-08 |
คะแนน | 3.20/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | Avneesh Kohli |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Blind Twitter", "description": "Keeps tweet authors hidden until you like or retweet them.", "version": "1.2.3", "browser_action": { "default_icon": "logo.png", "default_title": "Reveal Tweets" }, "background": { "scripts": [ "background.js" ] }, "icons": { "48": "logo.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.twitter.com\/*" ], "js": [ "jquery-2.1.4.min.js", "script.js" ] } ], "web_accessible_resources": [ "images\/avatar.png", "images\/logo.png" ], "permissions": [ "activeTab", "tabs", "storage", "webRequest", "*:\/\/*.twitter.com\/*", "*:\/\/*.google-analytics.com\/*" ], "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'" } |