Open to Scroll
An extension to open a link to the same position on the page as you are currently scrolled to.
Was ist Open to Scroll?
Open to Scroll ist eine Chrome-Erweiterung, die von laurence2000 entwickelt wurde, und ihr Hauptmerkmal ist "An extension to open a link to the same position on the page as you are currently scrolled to.".
Erweiterungsscreenshots
Open to Scroll-Erweiterungs-CRX-Datei herunterladen
Laden Sie Open to Scroll-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Open to Scroll |
ID | locammkpnfafhjppibeobpibdeobafkg |
Offizielle URL | https://chromewebstore.google.com/detail/open-to-scroll/locammkpnfafhjppibeobpibdeobafkg |
Beschreibung | An extension to open a link to the same position on the page as you are currently scrolled to. |
Dateigröße | 28.97 KB |
Installationsanzahl | 46 |
Aktuelle Version | 1.12 |
Letztes Update | 2023-03-07 |
Veröffentlichungsdatum | 2015-09-23 |
Entwickler | laurence2000 |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } ] } |