Read In Bed
Rotate webpages 90, 180, or 270 degrees for easy reading in bed
Read In Bedคืออะไร?
Read In Bed เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://danalexander.org และคุณลักษณะหลักของมันคือ "Rotate webpages 90, 180, or 270 degrees for easy reading in bed"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Read In Bed
ดาวน์โหลดไฟล์ส่วนขยาย Read In Bed ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
ReadInBed - Chrome Extension Rotate webpages 90, 180 or 270 degrees. Turn your screen without turning your computer! Note: Right after installing, refresh any open pages to enable the screen rotation. Introducing ReadInBed, the Chrome extension that allows you to orient your screen the way you want! With a simple click of a button, quickly rotate your screen in any direction for your viewing pleasure. This extension adds a button to your chrome browser that, when clicked, will rotate the screen in the preset direction. Go to the Options page (right click the icon and select “Options”) to change the direction to rotate to when the button is clicked. Alternatively, easily switch between screen orientations by pressing Shift+Ctrl+[Arrow Key]. FEATURES: - Enable/Disable with a single button click. - Rotate 90, 180 or 270 degrees. - Switch orientation with Shift+Ctrl+[Arrow Key] - Enjoy reading in bed! Feel free to make changes & contribute! View the source at https://github.com/danalexander/readinbed-chrome
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Read In Bed |
ID | gjbepkalbfffninamijgbcniiiogcgjp |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/read-in-bed/gjbepkalbfffninamijgbcniiiogcgjp |
คำอธิบาย | Rotate webpages 90, 180, or 270 degrees for easy reading in bed |
ขนาดไฟล์ | 169 KB |
จำนวนการติดตั้ง | 4,530 |
เวอร์ชันปัจจุบัน | 0.2 |
อัปเดตครั้งล่าสุด | 2014-03-01 |
วันที่เผยแพร่ | 2014-02-28 |
คะแนน | 2.74/5 รวมทั้งหมด 34 คะแนน |
ผู้พัฒนา | https://danalexander.org |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "browser_action": { "default_icon": "icon48.png", "default_title": "Read In Bed" }, "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Rotate webpages 90, 180, or 270 degrees for easy reading in bed", "background": { "scripts": [ "background.js" ] }, "name": "Read In Bed", "options_page": "options.html", "permissions": [ "storage" ], "icons": { "48": "icon48.png", "128": "icon128.png", "16": "icon16.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "jquery-1.9.1.min.js", "inject_rotate.js" ] } ], "manifest_version": 2, "version": "0.2" } |