Auto Scroll

Easily scroll to the top and the bottom of current page

Auto Scroll क्या है?

Auto Scroll Gareth Ng द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easily scroll to the top and the bottom of current page"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Auto Scroll एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        A simple tool for users, you can use this extension to auto scroll to the top or the bottom of current website.

By adding a small button on the page, users can easily click and reach the top of the webpage, without scrolling.

Users can also hide the button in the popup.

Enjoy your long page surfing!

Open source: https://github.com/garethng/GoToTop                    

एक्सटेंशन की मूल जानकारी

नाम Auto Scroll Auto Scroll
ID cmbpfcapjacpbmehmemljdilabjnlfhb
आधिकारिक URL https://chromewebstore.google.com/detail/auto-scroll/cmbpfcapjacpbmehmemljdilabjnlfhb
विवरण Easily scroll to the top and the bottom of current page
फ़ाइल का आकार 63.8 KB
स्थापना संख्या 403
वर्तमान संस्करण 1.2.0
अंतिम अपडेट 2022-09-30
प्रकाशन तिथि 2021-12-30
रेटिंग 3.80/5 कुल 5 रेटिंग्स
डेवलपर Gareth Ng
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/garethng/GoToTop
समर्थित भाषाएँ en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "default_locale": "en",
    "name": "__MSG_extension_name__",
    "description": "__MSG_extension_description__",
    "version": "1.2.0",
    "icons": {
        "48": "images\/icon-48.png",
        "96": "images\/icon-96.png",
        "128": "images\/icon-128.png",
        "256": "images\/icon-256.png",
        "512": "images\/icon-512.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "jQuery.js",
                "content.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/toolbar-icon-16.png",
            "19": "images\/toolbar-icon-19.png",
            "32": "images\/toolbar-icon-32.png",
            "38": "images\/toolbar-icon-38.png"
        }
    },
    "permissions": [
        "contextMenus",
        "storage"
    ]
}