Invisible Google Slide Control Bar

Control your Google Slide control bar.

Qu'est-ce que Invisible Google Slide Control Bar ?

Invisible Google Slide Control Bar est une extension Chrome développée par thumbd12856, et sa fonction principale est "Control your Google Slide control bar.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Invisible Google Slide Control Bar

Téléchargez les fichiers d'extension Invisible Google Slide Control Bar 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

                        Have you ever thought it is annoying that when presenting the Google Slide, the control bar shows while the cursor nearing it?

Now, you can control when to display/hide the Google Slide control bar by pressing a button!

Also, you can go for a toy example on the simple test page:
https://docs.google.com/presentation/d/1fUmsYkhQBpPGDVM1ErU8aL7bc0LmANjq8JA4WE0AjIs

The source code is open at https://github.com/thumbe12856/chrome-extension/tree/master/Invisible%20Google%20Slide%20Control%20Bar                    

Informations de Base sur l'Extension

Nom Invisible Google Slide Control Bar Invisible Google Slide Control Bar
ID hgaahalodagndnfjpggmojcbdololagh
URL Officiel https://chromewebstore.google.com/detail/invisible-google-slide-co/hgaahalodagndnfjpggmojcbdololagh
Description Control your Google Slide control bar.
Taille du Fichier 193 KB
Nombre d'Installations 2,551
Version Actuelle 1.1
Dernière Mise à Jour 2019-09-29
Date de Publication 2019-09-28
Évaluation 4.82/5 Total 22 Évaluations
Développeur thumbd12856
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Invisible Google Slide Control Bar",
    "description": "Control your Google Slide control bar.",
    "version": "1.1",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "index.html"
    },
    "background": {
        "scripts": [
            "index.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "assets\/lodash.min.js"
            ]
        }
    ],
    "permissions": [
        "*:\/\/*\/*"
    ]
}