Cleaner Reddit
This extensions allows user to disable Reddit's sidebar, thumbnails and voting arrows for a cleaner UI.
Cleaner Redditคืออะไร?
Cleaner Reddit เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Chema Leon และคุณลักษณะหลักของมันคือ "This extensions allows user to disable Reddit's sidebar, thumbnails and voting arrows for a cleaner UI."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Cleaner Reddit
ดาวน์โหลดไฟล์ส่วนขยาย Cleaner Reddit ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Update Version 1.2 - Now Cleaner Reddit allows you to toggle the visibility of Reddit's post flairs. Update Version 1.1 - Now Cleaner Reddit allows you to toggle the visibility of Reddit's recommended links. Cleaner Reddit allows users to toggle the visibility of Reddit's sidebar, their thumbnails or their voting arrows for a cleaner interface while visiting reddit.com.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Cleaner Reddit |
ID | fbmjfgjjjpjkkmiclfbhgaemglcjpjlh |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/cleaner-reddit/fbmjfgjjjpjkkmiclfbhgaemglcjpjlh |
คำอธิบาย | This extensions allows user to disable Reddit's sidebar, thumbnails and voting arrows for a cleaner UI. |
ขนาดไฟล์ | 430 KB |
จำนวนการติดตั้ง | 47 |
เวอร์ชันปัจจุบัน | 1.2 |
อัปเดตครั้งล่าสุด | 2018-11-09 |
วันที่เผยแพร่ | 2018-11-09 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | Chema Leon |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Cleaner Reddit", "description": "This extensions allows user to disable Reddit's sidebar, thumbnails and voting arrows for a cleaner UI.", "version": "1.2", "background": { "scripts": [ "popup.js" ], "persistent": true }, "browser_action": { "name": "Toggle Sidebar", "icons": [ "icon.png" ], "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "tabs", "background", "storage", "*:\/\/www.reddit.com\/*", "*:\/\/reddit.com\/*" ], "content_scripts": [ { "js": [ "ThirdParty\/jquery-3.2.1.min.js", "popup.js" ], "matches": [ "*:\/\/www.reddit.com\/*", "*:\/\/reddit.com\/*" ] } ] } |