AutoScrolling

Auto-scrolling without mouse-wheel

AutoScrolling란 무엇입니까?

AutoScrolling은(는) pinkienort에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Auto-scrolling without mouse-wheel"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

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