Top and Bottom scroll buttons

Adds scroll to Top and Bottom buttons on all sites

Top and Bottom scroll buttons क्या है?

Top and Bottom scroll buttons OmDev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds scroll to Top and Bottom buttons on all sites"।

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

screenshot

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

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

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

                        Navigate long pages more easily.

This extension adds two beautiful buttons at the corner of each page for fast scrolling to the top or the bottom of the page.

The buttons are customisable. You can change its size, transparency, position and the way they are scrolling.
You can also set the buttons to auto hide so you'll see them only when you want.

This extension is free, created for the people of the internet.

Limitations: As any other addon it doesn't work on Chrome web store, browser specific pages like "about:addons", on other extensions pages like options page of some addon. It's a browser security limitation, made for your own safety ;)                    

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

नाम Top and Bottom scroll buttons Top and Bottom scroll buttons
ID dbofniohnfjigodceiebfkcfdhncnici
आधिकारिक URL https://chromewebstore.google.com/detail/top-and-bottom-scroll-but/dbofniohnfjigodceiebfkcfdhncnici
विवरण Adds scroll to Top and Bottom buttons on all sites
फ़ाइल का आकार 53.82 KB
स्थापना संख्या 3,653
वर्तमान संस्करण 2.0.0
अंतिम अपडेट 2023-12-27
प्रकाशन तिथि 2018-12-11
रेटिंग 4.50/5 कुल 38 रेटिंग्स
डेवलपर OmDev
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Top and Bottom scroll buttons",
    "short_name": "Scroll buttons",
    "description": "Adds scroll to Top and Bottom buttons on all sites",
    "version": "2.0.0",
    "icons": {
        "48": "img\/icon-48.png",
        "96": "img\/icon-96.png",
        "128": "img\/icon-128.png"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_popup": "content\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "options\/options-storage.js",
                "content\/buttons.js"
            ],
            "css": [
                "content\/buttons.css"
            ],
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "img\/arrow-up.svg",
                "img\/arrow-dn.svg"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": true
    }
}