Stop Slide Scrolling in Google Presentation

Removes annoying accidental slide scrolling behavior in Google Drive Presentations, Drawings, Calendar, etc.

什么是Stop Slide Scrolling in Google Presentation?

Stop Slide Scrolling in Google Presentation是由https://sneakaway.studio开发的Chrome扩展程序,该扩展的主要功能是“Removes annoying accidental slide scrolling behavior in Google Drive Presentations, Drawings, Calendar, etc.”。

扩展截图

screenshot

下载Stop Slide Scrolling in Google Presentation扩展crx文件

下载Stop Slide Scrolling in Google Presentation扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension stops the annoying accidental slide scrolling behavior in Google Drive, including presentations, drawings, calendar, and more. Fixes a terribly irritating problem where Google Drive Presentations automatically jump to the next slide unexpectedly, usually as a result of using the non-scroll-indexed devices like Apple Magic Mouse.

The extension will need to request permissions to fix the issue.

FAQ, source code, and license 
https://github.com/sneakaway-studio/stop-slide-scrolling                    

扩展基本信息

名称 Stop Slide Scrolling in Google Presentation Stop Slide Scrolling in Google Presentation
ID cmpmjbfhpecollipohbphhgbohleeeon
官方URL https://chromewebstore.google.com/detail/stop-slide-scrolling-in-g/cmpmjbfhpecollipohbphhgbohleeeon
简介 Removes annoying accidental slide scrolling behavior in Google Drive Presentations, Drawings, Calendar, etc.
文件大小 23.69 KB
安装次数 20,000
当前版本 0.1.5
更新时间 2022-06-23
上架时间 2019-11-05
评分 4.68/5 共99次评分
开发者 https://sneakaway.studio
电子邮箱 [email protected]
付费类型 free
扩展官网 https://sneakaway.studio
帮助页面URL https://github.com/sneakaway-studio/stop-slide-scrolling
隐私政策页面URL https://tallysavestheinternet.com/privacy
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Stop Slide Scrolling in Google Presentation",
    "version": "0.1.5",
    "author": "Owen Mundy",
    "homepage_url": "https:\/\/github.com\/sneakaway-studio\/stop-slide-scrolling",
    "description": "Removes annoying accidental slide scrolling behavior in Google Drive Presentations, Drawings, Calendar, etc.",
    "icons": {
        "16": "assets\/img\/icon16.png",
        "48": "assets\/img\/icon48.png",
        "128": "assets\/img\/icon128.png"
    },
    "action": {
        "default_icon": {
            "16": "assets\/img\/icon16.png",
            "48": "assets\/img\/icon48.png"
        },
        "default_title": "Stop Slide Scrolling in Google Presentation",
        "default_popup": "pages\/popup.html"
    },
    "background": {
        "service_worker": "assets\/js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.google.com\/presentation\/*",
                "https:\/\/docs.google.com\/drawings\/*",
                "https:\/\/calendar.google.com\/*"
            ],
            "js": [
                "assets\/js\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ],
    "offline_enabled": true,
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}