Stop Slide Scrolling in Google Presentation

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

Qu'est-ce que Stop Slide Scrolling in Google Presentation ?

Stop Slide Scrolling in Google Presentation est une extension Chrome développée par https://sneakaway.studio, et sa fonction principale est "Removes annoying accidental slide scrolling behavior in Google Drive Presentations, Drawings, Calendar, etc.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Stop Slide Scrolling in Google Presentation

Téléchargez les fichiers d'extension Stop Slide Scrolling in Google Presentation au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Stop Slide Scrolling in Google Presentation Stop Slide Scrolling in Google Presentation
ID cmpmjbfhpecollipohbphhgbohleeeon
URL Officiel https://chromewebstore.google.com/detail/stop-slide-scrolling-in-g/cmpmjbfhpecollipohbphhgbohleeeon
Description Removes annoying accidental slide scrolling behavior in Google Drive Presentations, Drawings, Calendar, etc.
Taille du Fichier 23.69 KB
Nombre d'Installations 20,000
Version Actuelle 0.1.5
Dernière Mise à Jour 2022-06-23
Date de Publication 2019-11-05
Évaluation 4.68/5 Total 99 Évaluations
Développeur https://sneakaway.studio
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://sneakaway.studio
URL de la Page d'Aide https://github.com/sneakaway-studio/stop-slide-scrolling
URL de la Page de Politique de Confidentialité https://tallysavestheinternet.com/privacy
Langues Prises en Charge 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'"
    }
}