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