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文件

下載AutoScroll擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    ]
}