Invisible Google Slide Control Bar
Control your Google Slide control bar.
Co je Invisible Google Slide Control Bar?
Invisible Google Slide Control Bar je rozšíření Chrome vyvinuté thumbd12856, a jeho hlavní funkcí je „Control your Google Slide control bar.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Invisible Google Slide Control Bar
Stáhněte si soubory rozšíření Invisible Google Slide Control Bar ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | |
ID | hgaahalodagndnfjpggmojcbdololagh |
Oficiální URL | https://chromewebstore.google.com/detail/invisible-google-slide-co/hgaahalodagndnfjpggmojcbdololagh |
Popis | Control your Google Slide control bar. |
Velikost souboru | 193 KB |
Počet instalací | 2,551 |
Aktuální Verze | 1.1 |
Poslední Aktualizace | 2019-09-29 |
Datum Vydání | 2019-09-28 |
Hodnocení | 4.82/5 Celkem 22 Hodnocení |
Vývojář | thumbd12856 |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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": [ "*:\/\/*\/*" ] } |