Scroll to Top

Add a stylish scroll-to-top button for all websites.

Scroll to Top क्या है?

Scroll to Top Muyor द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add a stylish scroll-to-top button for all websites."।

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

screenshot

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

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

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

                        Scroll to Top is an extension that lets you easily scroll to the top of the page by clicking on a button.

Simply add the add-on to your browser and start surfing. Once you scroll down on a page, a button will appear at the right-bottom corner with an - UP - arrow icon. Clicking on the button will scroll the page to the top, fast and smooth! If you want to hide the scroll button, please click on the toolbar icon once (dark grey arrow). The button will disappear immediately. Please note that pressing on the toolbar icon once again will display the scroll button.

To report bugs, please fill out the bug report form on the add-on's homepage (https://mybrowseraddon.com/scroll-to-top.html).                    

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

नाम Scroll to Top Scroll to Top
ID jbnhgaohndmapghohjlkgjeghcklepee
आधिकारिक URL https://chromewebstore.google.com/detail/scroll-to-top/jbnhgaohndmapghohjlkgjeghcklepee
विवरण Add a stylish scroll-to-top button for all websites.
फ़ाइल का आकार 43.94 KB
स्थापना संख्या 808
वर्तमान संस्करण 0.1.2
अंतिम अपडेट 2024-01-21
प्रकाशन तिथि 2018-04-30
रेटिंग 4.25/5 कुल 4 रेटिंग्स
डेवलपर Muyor
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://mybrowseraddon.com/scroll-to-top.html
सहायता पृष्ठ URL https://mybrowseraddon.com/scroll-to-top.html
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.2",
    "manifest_version": 3,
    "name": "Scroll to Top",
    "offline_enabled": true,
    "permissions": [
        "storage"
    ],
    "homepage_url": "https:\/\/mybrowseraddon.com\/scroll-to-top.html",
    "description": "Add a stylish scroll-to-top button for all websites.",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Scroll to Top",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "commands": {
        "toggle": {
            "description": "Scroll to Top",
            "suggested_key": {
                "mac": "Command+Shift+D",
                "default": "Ctrl+Shift+D"
            }
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "data\/content_script\/inject.js"
            ],
            "css": [
                "data\/content_script\/inject.css"
            ]
        }
    ],
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}