My Scroll Button

Simply scrolling to top or bottom

My Scroll Button란 무엇입니까?

My Scroll Button은(는) N.Zetoutou에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simply scrolling to top or bottom"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        A simple scroll button.
Perfect for tumblr or twitter which use endless loading.
you can disable for specific site and your seetings is always synced with Chrome sync (you must check "extensions" in google chrome sync)
This extension has very light code (~ 6k without scroll image).
Enjoys !
************************ my other extensions ***************
https://chrome.google.com/webstore/detail/font-playground/hdpmpnhaoddjelneingmbnhaibbmjgno

https://chrome.google.com/webstore/detail/fast-bookmark-scanner/gjcmklpilmpfhfjpebhnapnglcppdbic

https://chrome.google.com/webstore/detail/click-counter-beta/pjjhodhefdnglbaaogjilbficnccehlf                    

확장 프로그램 기본 정보

이름 My Scroll Button My Scroll Button
ID pbpnciineegkfenpaaebjmbmmbhocipf
공식 URL https://chromewebstore.google.com/detail/my-scroll-button/pbpnciineegkfenpaaebjmbmmbhocipf
설명 Simply scrolling to top or bottom
파일 크기 14.9 KB
설치 횟수 285
현재 버전 2017.11.15
최근 업데이트 2017-11-15
출시 날짜 2017-11-15
평점 4.14/5 총 14 개의 평점
개발자 N.Zetoutou
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "My Scroll Button",
    "version": "2017.11.15",
    "description": "Simply scrolling to top or bottom",
    "icons": {
        "16": "icon-ext-48.png",
        "48": "icon-ext-48.png",
        "128": "icon-ext-48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "css": [
                "content_script.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon-ext-48.png",
        "default_popup": "browser_action.html"
    },
    "web_accessible_resources": [
        "icon-up.png"
    ],
    "permissions": [
        "storage",
        "activeTab"
    ],
    "manifest_version": 2
}