Simple Auto Scroll

Simple speed-customizable auto scroll

Simple Auto Scroll란 무엇입니까?

Simple Auto Scroll은(는) xjpablobrx에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simple speed-customizable auto scroll"입니다.

확장 프로그램 스크린샷

screenshot

Simple Auto Scroll 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    ]
}