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