Invisible Google Slide Control Bar

Control your Google Slide control bar.

Wat is Invisible Google Slide Control Bar?

Invisible Google Slide Control Bar is een Chrome-extensie ontwikkeld door thumbd12856, en de belangrijkste functie is "Control your Google Slide control bar.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Invisible Google Slide Control Bar

Download Invisible Google Slide Control Bar-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Invisible Google Slide Control Bar Invisible Google Slide Control Bar
ID hgaahalodagndnfjpggmojcbdololagh
Officiële URL https://chromewebstore.google.com/detail/invisible-google-slide-co/hgaahalodagndnfjpggmojcbdololagh
Beschrijving Control your Google Slide control bar.
Bestandsgrootte 193 KB
Aantal Installaties 2,551
Huidige Versie 1.1
Laatst Bijgewerkt 2019-09-29
Publicatiedatum 2019-09-28
Beoordeling 4.82/5 Totaal 22 Beoordelingen
Ontwikkelaar thumbd12856
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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": [
        "*:\/\/*\/*"
    ]
}