Simple Auto Scroll

Simple speed-customizable auto scroll

Simple Auto Scrollคืออะไร?

Simple Auto Scroll เป็นส่วนขยายของ Chrome ที่พัฒนาโดย xjpablobrx และคุณลักษณะหลักของมันคือ "Simple speed-customizable auto scroll"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Simple Auto Scroll

ดาวน์โหลดไฟล์ส่วนขยาย Simple Auto Scroll ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        1. What is it?

A speed-customizable auto-scroll Google Chrome extension.

2. Why?

A lot of times I find myself reading long texfiles, and after a while, I kind of wish I could just read them as if they were a movie. I've tried with the mouse (middle click) thingy, but it's just not practical and adjusting the speed is very tricky - not to mention that a lot of times it's just too fast.

3. Features

This extension allows you to easily change the auto-scroll speed and save it in three different modes; slow, medium and fast. A single click will stop the auto-scrolling.

Note: Does not work in Google related websites.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Simple Auto Scroll Simple Auto Scroll
ID dccjkemhmffnljlnnoffljpkhkfpldff
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/simple-auto-scroll/dccjkemhmffnljlnnoffljpkhkfpldff
คำอธิบาย Simple speed-customizable auto scroll
ขนาดไฟล์ 12.31 KB
จำนวนการติดตั้ง 40,000
เวอร์ชันปัจจุบัน 0.1.4
อัปเดตครั้งล่าสุด 2018-12-17
วันที่เผยแพร่ 2018-12-17
คะแนน 4.04/5 รวมทั้งหมด 214 คะแนน
ผู้พัฒนา xjpablobrx
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/jpablobr/simple-auto-scroll
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Auto Scroll",
    "version": "0.1.4",
    "description": "Simple speed-customizable auto scroll",
    "icons": {
        "48": "icons\/autoscroll.png",
        "128": "icons\/autoscroll.png"
    },
    "background": {
        "page": "background.html"
    },
    "options_page": "options.html",
    "browser_action": {
        "default_title": "",
        "default_icon": "icons\/autoscroll.png"
    },
    "permissions": [
        "*:\/\/*\/*",
        "storage",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/simple_autoscroll.js"
            ],
            "run_at": "document_start"
        }
    ]
}