Webpage Auto Scrolldown
Automatically keeps you at the bottom of a page when clicked.
Webpage Auto Scrolldownคืออะไร?
Webpage Auto Scrolldown เป็นส่วนขยายของ Chrome ที่พัฒนาโดย CommanderCactus และคุณลักษณะหลักของมันคือ "Automatically keeps you at the bottom of a page when clicked."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Webpage Auto Scrolldown
ดาวน์โหลดไฟล์ส่วนขยาย Webpage Auto Scrolldown ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Literally scrolls to the bottom of the page. That's it. Click it once to activate it, click it again to deactivate. Probably a lot of bugs. Go forth and be productive, I guess.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | aegbbdpcnbnddiipcggakoglcmlgejem |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/webpage-auto-scrolldown/aegbbdpcnbnddiipcggakoglcmlgejem |
คำอธิบาย | Automatically keeps you at the bottom of a page when clicked. |
ขนาดไฟล์ | 14.53 KB |
จำนวนการติดตั้ง | 3,000 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2016-03-13 |
วันที่เผยแพร่ | 2016-03-13 |
คะแนน | 4.15/5 รวมทั้งหมด 20 คะแนน |
ผู้พัฒนา | CommanderCactus |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Webpage Auto Scrolldown", "description": "Automatically keeps you at the bottom of a page when clicked.", "version": "1.0", "short_name": "Auto Scroller", "icons": { "16": "ico16.png", "48": "ico48.png", "128": "ico128.png" }, "background": { "scripts": [ "bgcomm.js" ], "persistent": false }, "permissions": [ "tabs", "activeTab", "http:\/\/*\/*", "https:\/\/*\/*", "alarms" ], "browser_action": { "default_title": "KICK IT INTO OVERDRIIIIIIVE" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "autoscroll.js" ], "run_at": "document_end" } ] } |