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开发的Chrome扩展程序,该扩展的主要功能是“An extension to open a link to the same position on the page as you are currently scrolled to.”。

扩展截图

screenshot

下载Open to Scroll扩展crx文件

下载Open to Scroll扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
            ]
        }
    ]
}