AutoScroll

This extension adds customizable autoscroll support to Chrome.

AutoScroll란 무엇입니까?

AutoScroll은(는) https://kaescripts.blogspot.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension adds customizable autoscroll support to Chrome."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

AutoScroll 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        For users on Linux or Mac, the lack of autoscroll can be a big pain. This extension can help!

It supports both sticky and non-sticky scrolling, doesn't scroll on textareas or links, and even has settings to customize various aspects such as scroll speed.

To use it, press (or hold) the middle mouse button, then move the mouse to scroll the page. Alternatively, hold Ctrl/⌘ and press the left mouse button.

It won't work on every page, but it should work on most.


Known bugs:

● You need to refresh the site or restart Chrome before it'll work. You only need to do this once.

● Doesn't work on chrome:// URLs or the Chrome Web Store. It's restricted by Chrome for security reasons.


Changelog:
http://paaru.pbworks.com/f/AutoScroll%20Changelog.html

GitHub:
https://github.com/Pauan/AutoScroll                    

확장 프로그램 기본 정보

이름 AutoScroll AutoScroll
ID occjjkgifpmdgodlplnacmkejpdionan
공식 URL https://chromewebstore.google.com/detail/autoscroll/occjjkgifpmdgodlplnacmkejpdionan
설명 This extension adds customizable autoscroll support to Chrome.
파일 크기 51.7 KB
설치 횟수 117,828
현재 버전 4.10
최근 업데이트 2018-11-21
출시 날짜 2018-11-21
평점 4.21/5 총 638 개의 평점
개발자 https://kaescripts.blogspot.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Pauan/AutoScroll
도움말 페이지 URL https://github.com/Pauan/AutoScroll/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AutoScroll",
    "version": "4.10",
    "description": "This extension adds customizable autoscroll support to Chrome.",
    "minimum_chrome_version": "29",
    "icons": {
        "128": "data\/images\/icons\/icon128.png",
        "16": "data\/images\/icons\/icon16.png",
        "32": "data\/images\/icons\/icon32.png",
        "48": "data\/images\/icons\/icon48.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "main.js"
        ],
        "persistent": false
    },
    "options_page": "data\/options.html",
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "data\/defaults.js",
                "data\/AutoScroll.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "data\/images\/origin\/*.svg"
    ]
}