My Scroll Button

Simply scrolling to top or bottom

My Scroll Buttonคืออะไร?

My Scroll Button เป็นส่วนขยายของ Chrome ที่พัฒนาโดย N.Zetoutou และคุณลักษณะหลักของมันคือ "Simply scrolling to top or bottom"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย My Scroll Button

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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
}