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ファイルをダウンロード

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