Reddit Sidebar Collapser
Hide the Reddit sidebar until you actually need it.
Reddit Sidebar Collapserคืออะไร?
Reddit Sidebar Collapser เป็นส่วนขยายของ Chrome ที่พัฒนาโดย awswrd และคุณลักษณะหลักของมันคือ "Hide the Reddit sidebar until you actually need it."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Reddit Sidebar Collapser
ดาวน์โหลดไฟล์ส่วนขยาย Reddit Sidebar Collapser ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Posts with lots of text in reddit can become extremely crowded by the sidebar, especially if you frequently have two windows open side by side. This extension fixes that by adding a widget to the top of the sidebar to collapse and expand it as needed. If you'd rather have the sidebar still there, but have the option to collapse it, you can change the default behavior in the options page.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Reddit Sidebar Collapser |
ID | kkbbjempbnpnfmeldlaghacohkcaiind |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/reddit-sidebar-collapser/kkbbjempbnpnfmeldlaghacohkcaiind |
คำอธิบาย | Hide the Reddit sidebar until you actually need it. |
ขนาดไฟล์ | 7.68 KB |
จำนวนการติดตั้ง | 29 |
เวอร์ชันปัจจุบัน | 1.0.3 |
อัปเดตครั้งล่าสุด | 2013-06-20 |
วันที่เผยแพร่ | 2013-06-19 |
คะแนน | 2.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | awswrd |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Reddit Sidebar Collapser", "description": "Hide the Reddit sidebar until you actually need it.", "version": "1.0.3", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "options_page": "options.html", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/www.reddit.com\/*" ], "js": [ "contentscript.js" ], "run_at": "document_end" } ] } |