Auto Scroll

Automatically scroll down on your current web page

Auto Scroll란 무엇입니까?

Auto Scroll은(는) PracticalApplications에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically scroll down on your current web page"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        This chrome extension allows you to automatically scroll down the page with a click of a button.

This chrome extension is perfect for reading any web page of your choice.                    

확장 프로그램 기본 정보

이름 Auto Scroll Auto Scroll
ID pnmppanpmcimcfnkhkcpnmomiiomchpd
공식 URL https://chrome.google.com/webstore/detail/auto-scroll/pnmppanpmcimcfnkhkcpnmomiiomchpd
설명 Automatically scroll down on your current web page
파일 크기 44.83 KB
설치 횟수 460
현재 버전 1.0
최근 업데이트 2018-02-20
출시 날짜 2018-02-20
평점 3.75/5 총 4 개의 평점
개발자 PracticalApplications
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Scroll",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Automatically scroll down on your current web page",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "editor.html"
    },
    "permissions": [
        "activeTab",
        "tabs",
        ""
    ],
    "background": {
        "scripts": [
            "jquery.min.js",
            "editor.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}