Scroll to Top

Quickly scroll to top or bottom of the page and then return to the previous position.

Scroll to Top क्या है?

Scroll to Top https://www.facebook.com/browservery द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Quickly scroll to top or bottom of the page and then return to the previous position."।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Scroll to Top adds button to the left of your browser window that lets you:

★ Scroll to top by left-clicking on it.

★ Scroll to bottom by right-clicking on it.

★ Return to the previous position/remember your current position by middle clicking on it.

There're also customizable keyboard shortcuts for all these actions. To customize them go to chrome://extensions/shortcuts.
----------------------------------------------------------------
Permissions:
Read and change all your data on the websites you visit
Allows the extension to append the scroll button and do scrolling on pages (when the button is clicked).
----------------------------------------------------------------
🖼️ Follow my Facebook page (more extensions): https://www.facebook.com/browservery                    

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

नाम Scroll to Top Scroll to Top
ID obebfhocibioiakindbigklnhhknkcdc
आधिकारिक URL https://chromewebstore.google.com/detail/scroll-to-top/obebfhocibioiakindbigklnhhknkcdc
विवरण Quickly scroll to top or bottom of the page and then return to the previous position.
फ़ाइल का आकार 59.54 KB
स्थापना संख्या 831
वर्तमान संस्करण 1.18.1
अंतिम अपडेट 2024-01-19
प्रकाशन तिथि 2020-05-28
रेटिंग 4.37/5 कुल 30 रेटिंग्स
डेवलपर https://www.facebook.com/browservery
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.facebook.com/browservery
सहायता पृष्ठ URL https://groups.google.com/g/browservery
गोपनीयता नीति पृष्ठ URL https://github.com/loftyshaky/extensions-privacy-policy/blob/main/extensions-privacy-policy.md
समर्थित भाषाएँ en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Scroll to Top",
    "description": "__MSG_app_description__",
    "version": "1.18.1",
    "default_locale": "en",
    "web_accessible_resources": [
        {
            "resources": [
                "sound.mp3"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "Scroll to Top"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "smooth-scroll.min.js",
                "hf.js",
                "content_script.js"
            ],
            "css": [
                "content_script.css"
            ]
        }
    ],
    "commands": {
        "to_top": {
            "suggested_key": {
                "default": "Alt+O"
            },
            "description": "__MSG_to_top_hotkey__"
        },
        "to_bottom": {
            "suggested_key": {
                "default": "Alt+P"
            },
            "description": "__MSG_to_bottom_hotkey__"
        },
        "return": {
            "suggested_key": {
                "default": "Alt+U"
            },
            "description": "__MSG_return_hotkey__"
        },
        "remember_position": {
            "suggested_key": {
                "default": "Alt+I"
            },
            "description": "__MSG_remember_position_hotkey__"
        }
    }
}