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ファイルをダウンロード

My Scroll Button拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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
}