Autoscroll : Automatic Page Scrolling

An extension to help scroll a webpage

Autoscroll : Automatic Page Scrolling란 무엇입니까?

Autoscroll : Automatic Page Scrolling은(는) Emil Vinod에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension to help scroll a webpage"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Autoscroll : Automatic Page Scrolling 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension is perfect for those who are tired of manually scrolling through long articles, websites, or social media posts. No more tired fingers from scrolling or losing your place on a page. With Autoscroll, you can simply set the pace that you prefer and let the extension do the rest :)

For a guide to the extension visit : https://sites.google.com/view/autoscrollguide/home                    

확장 프로그램 기본 정보

이름 Autoscroll : Automatic Page Scrolling Autoscroll : Automatic Page Scrolling
ID mofpoefmipkeaakcglcfamacffochlid
공식 URL https://chromewebstore.google.com/detail/autoscroll-automatic-page/mofpoefmipkeaakcglcfamacffochlid
설명 An extension to help scroll a webpage
파일 크기 191 KB
설치 횟수 46
현재 버전 0.0.1
최근 업데이트 2024-01-23
출시 날짜 2023-11-23
평점 4.20/5 총 5 개의 평점
개발자 Emil Vinod
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://sites.google.com/view/autoscrollguide/home
도움말 페이지 URL https://sites.google.com/view/autoscrollguide/home
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Autoscroll : Automatic Page Scrolling",
    "version": "0.0.1",
    "description": "An extension to help scroll a webpage",
    "icons": {
        "16": "Logo.png",
        "32": "Logo.png",
        "48": "Logo.png",
        "128": "Logo.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "background": {
        "js": "scroll.js"
    },
    "permissions": [
        "activeTab"
    ]
}