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
Eメール [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"
            ]
        }
    ]
}