AutoScrolling

Auto-scrolling without mouse-wheel

AutoScrollingとは何ですか?

AutoScrollingはpinkienortによって開発されたChromeの拡張機能で、その主な機能は「Auto-scrolling without mouse-wheel」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

AutoScrolling拡張機能のCRXファイルをダウンロード

AutoScrolling拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This plugin enables you auto-scrolling without using mouse wheel. When you click the icon on the toolbar, the auto-scrolling is started. If you want to stop, then click the icon again. And the scrolling is also stopped when you switch the active tab in the active window.

The plugin helps you for such situation, that you are doing some task or games with watching the web sites like Twitter or Tumblr.

If you find some bugs or request some features, please sends me mails or create issues in the homepage of this plugin.

Thank you for users.                    

拡張機能の基本情報

名前 AutoScrolling AutoScrolling
ID maibgninmecbokncboknddpeaedfioea
公式URL https://chromewebstore.google.com/detail/autoscrolling/maibgninmecbokncboknddpeaedfioea
説明 Auto-scrolling without mouse-wheel
ファイルサイズ 233 KB
インストール数 1,046
現在のバージョン 1.0.0
最終更新日 2019-03-26
公開日 2019-03-25
評価 2.67/5 合計 3 レビュー
開発者 pinkienort
支払い方法 free
拡張機能のウェブサイト https://github.com/pinkienort/AutoScrolling
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AutoScrolling",
    "version": "1.0.0",
    "author": "pinkienort",
    "homepage_url": "https:\/\/github.com\/pinkienort\/AutoScrolling",
    "description": "Auto-scrolling without mouse-wheel",
    "permissions": [
        "storage",
        "tabs",
        "contextMenus"
    ],
    "options_ui": {
        "page": "dist\/options.html"
    },
    "icons": {
        "48": "icons\/mouse-48.png",
        "96": "icons\/mouse-96.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/mouse-16.png",
            "32": "icons\/mouse-32.png",
            "48": "icons\/mouse-48.png"
        },
        "default_title": "Enable\/Disable auto scroll"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "dist\/content.js"
            ],
            "css": [
                "dist\/style.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "dist\/background.js"
        ]
    },
    "commands": {
        "single-click-action": {
            "suggested_key": {
                "default": "Alt+Shift+PageDown"
            },
            "description": "Fire a single click on browser icon"
        }
    }
}