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
官方網址 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"
    ]
}