Disable Scrolling

This extension allows you to disable scrolling on your page.

Disable Scrollingとは何ですか?

Disable ScrollingはUnknownによって開発されたChromeの拡張機能で、その主な機能は「This extension allows you to disable scrolling on your page.」です。

拡張機能のスクリーンショット

screenshot

Disable Scrolling拡張機能のCRXファイルをダウンロード

Disable Scrolling拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Ever tried searching for a word in the current viewport, but the Find Bar takes you to "random" sections of the page, making you lose track of the section you were just reading?

Try using this chrome extension to temporarily disable scrolling of the current page before you use Find, so that you can stay where you are while Find searches all the instances for you.

* Note: please refresh any pre-existing tabs after installation.                    

拡張機能の基本情報

名前 Disable Scrolling Disable Scrolling
ID dmjigjnpimhlighaibpchommlmnlkmlg
公式URL https://chromewebstore.google.com/detail/disable-scrolling/dmjigjnpimhlighaibpchommlmnlkmlg
説明 This extension allows you to disable scrolling on your page.
ファイルサイズ 190 KB
インストール数 1,077
現在のバージョン 1.0.0
最終更新日 2020-06-13
公開日 2020-06-13
評価 3.20/5 合計 10 レビュー
開発者 Unknown
支払い方法 free
拡張機能のウェブサイト https://github.com/ysun62/Disable-Scrolling-Extension
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Disable Scrolling",
    "description": "This extension allows you to disable scrolling on your page.",
    "version": "1.0.0",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "index.html"
    },
    "permissions": [
        "storage",
        "activeTab"
    ]
}