Open to Scroll

An extension to open a link to the same position on the page as you are currently scrolled to.

Open to Scroll क्या है?

Open to Scroll laurence2000 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension to open a link to the same position on the page as you are currently scrolled to."।

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

screenshot

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

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

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

                        This extension allows you to navigate pages on websites while maintaining your current position. Useful for browsing within a site that has a constant layout, particularly video streaming sites, it allows you to move from one video to the next without adjusting the page.

Update version 1.12:
Modernized code
Fixed required permissions
Redirect links should now work.

Update version 1.11
Fixed code to allow using links without opening a new tab
--Fix only works for links without redirects, you can open a link an maintain position only if the url on the link matches the url you end on. Will look into fixing this

Update version 1.1:
Cleaned up visible components
Added Icons
Sped up the code                    

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

नाम Open to Scroll Open to Scroll
ID locammkpnfafhjppibeobpibdeobafkg
आधिकारिक URL https://chromewebstore.google.com/detail/open-to-scroll/locammkpnfafhjppibeobpibdeobafkg
विवरण An extension to open a link to the same position on the page as you are currently scrolled to.
फ़ाइल का आकार 28.97 KB
स्थापना संख्या 46
वर्तमान संस्करण 1.12
अंतिम अपडेट 2023-03-07
प्रकाशन तिथि 2015-09-23
डेवलपर laurence2000
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Open to Scroll",
    "description": "An extension to open a link to the same position on the page as you are currently scrolled to.",
    "version": "1.12",
    "permissions": [
        "contextMenus",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "icons": {
        "16": "16Icon.png",
        "48": "48Icon.png",
        "128": "128Icon.png"
    },
    "background": {
        "service_worker": "scrollMenu.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "scroll.js"
            ]
        }
    ]
}