Scroll Buddy
This extension allows you to automate page scrolling
Scroll Buddyคืออะไร?
Scroll Buddy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย otoinsa และคุณลักษณะหลักของมันคือ "This extension allows you to automate page scrolling"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Scroll Buddy
ดาวน์โหลดไฟล์ส่วนขยาย Scroll Buddy ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Reading a book online or just tired of scrolling? The usual auto-scroll plugins just ain't cutting it? Scroll Buddy is here for you. Control how many pixels to scroll with each line scrolled Control the timeframe for scroll motion using milliseconds ( 1000 miliseconds = 1 second) Right click menu to start/stop scrolling for convenience Simple, elegant interface Also the browser toolbar popup closes and starts scrolling when you hit the enter key regardless of focused element.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Scroll Buddy |
ID | iijemcphocnlembodanflickfiafjnmk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/scroll-buddy/iijemcphocnlembodanflickfiafjnmk |
คำอธิบาย | This extension allows you to automate page scrolling |
ขนาดไฟล์ | 1.85 MB |
จำนวนการติดตั้ง | 1,058 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2023-12-29 |
วันที่เผยแพร่ | 2017-10-30 |
คะแนน | 4.94/5 รวมทั้งหมด 18 คะแนน |
ผู้พัฒนา | otoinsa |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://digital-ninja.xyz |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "offline_enabled": true, "name": "Scroll Buddy", "description": "This extension allows you to automate page scrolling", "version": "1.1", "browser_action": { "default_popup": "popup.html" }, "background": { "persistent": false, "scripts": [ "background.js", "contextMenus.js" ] }, "permissions": [ "notifications", "storage", "contextMenus", "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "16": "icon\/icon16.png", "32": "icon\/icon32.png", "48": "icon\/icon48.png", "64": "icon\/icon64.png", "128": "icon\/icon128.png" }, "web_accessible_resources": [ "icon\/icon48.png", "missing-values.png" ] } |