Open to Scroll

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

Qu'est-ce que Open to Scroll ?

Open to Scroll est une extension Chrome développée par laurence2000, et sa fonction principale est "An extension to open a link to the same position on the page as you are currently scrolled to.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Open to Scroll

Téléchargez les fichiers d'extension Open to Scroll au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Open to Scroll Open to Scroll
ID locammkpnfafhjppibeobpibdeobafkg
URL Officiel https://chromewebstore.google.com/detail/open-to-scroll/locammkpnfafhjppibeobpibdeobafkg
Description An extension to open a link to the same position on the page as you are currently scrolled to.
Taille du Fichier 28.97 KB
Nombre d'Installations 46
Version Actuelle 1.12
Dernière Mise à Jour 2023-03-07
Date de Publication 2015-09-23
Développeur laurence2000
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}