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