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 là gì?

Open to Scroll là một tiện ích mở rộng Chrome được phát triển bởi laurence2000, và tính năng chính của nó là "An extension to open a link to the same position on the page as you are currently scrolled to.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Open to Scroll

Tải xuống các tệp mở rộng Open to Scroll dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Open to Scroll Open to Scroll
ID locammkpnfafhjppibeobpibdeobafkg
URL Chính Thức https://chromewebstore.google.com/detail/open-to-scroll/locammkpnfafhjppibeobpibdeobafkg
Mô tả An extension to open a link to the same position on the page as you are currently scrolled to.
Kích Thước Tệp 28.97 KB
Số Lần Cài Đặt 46
Phiên Bản Hiện Tại 1.12
Cập Nhật Lần Cuối 2023-03-07
Ngày Phát Hành 2015-09-23
Nhà Phát Triển laurence2000
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}