SelfScroll

This extension allow to automatically scroll the page. Suitable for monitors and kiosks.

SelfScroll란 무엇입니까?

SelfScroll은(는) https://zerobug.it에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension allow to automatically scroll the page. Suitable for monitors and kiosks."입니다.

확장 프로그램 스크린샷

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

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

확장 프로그램 사용 설명서

                        This extension allow to automatically scroll the page. Suitable for monitors and kiosks.

Buy me a coffe :D

Litecoin: MC8PtUhSL2iJCx5GWrisPZPpgiFE56ejyc
Paypal: https://www.paypal.me/ZeroBug                    

확장 프로그램 기본 정보

이름 SelfScroll SelfScroll
ID lofkbkbhpmeihoaogggfbhmjdekjihlf
공식 URL https://chromewebstore.google.com/detail/selfscroll/lofkbkbhpmeihoaogggfbhmjdekjihlf
설명 This extension allow to automatically scroll the page. Suitable for monitors and kiosks.
파일 크기 132 KB
설치 횟수 1,476
현재 버전 1.4
최근 업데이트 2018-11-13
출시 날짜 2018-11-13
평점 4.40/5 총 5 개의 평점
개발자 https://zerobug.it
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://zerobug.it/
지원되는 언어 en,it
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SelfScroll",
    "version": "1.4",
    "description": "This extension allow to automatically scroll the page. Suitable for monitors and kiosks.",
    "default_locale": "en",
    "icons": {
        "16": ".\/icons\/selfscroll_16.png",
        "48": ".\/icons\/selfscroll_48.png",
        "128": ".\/icons\/selfscroll_128.png"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "selfscroll_script.js"
            ]
        }
    ],
    "options_ui": {
        "page": "selfscroll_options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "selfscroll_background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": ".\/icons\/selfscroll.png",
        "default_title": "SelfScroll"
    },
    "manifest_version": 2
}