Better Slides
Automatically moves your Google Slides™ presentation and speakers notes on multiple monitors.
Was ist Better Slides?
Better Slides ist eine Chrome-Erweiterung, die von Stornitz entwickelt wurde, und ihr Hauptmerkmal ist "Automatically moves your Google Slides™ presentation and speakers notes on multiple monitors.".
Erweiterungsscreenshots
Better Slides-Erweiterungs-CRX-Datei herunterladen
Laden Sie Better Slides-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Have you ever wanted do just plug-in your Google Slides™ presentation on your second monitor and that it setup automatically with the speakers notes ? This extension is made for you ! Just click a button and the presentation launches in fullscreen. If you have two monitors, it moves the presentation to the second one and show you your speakers notes on your primary monitor. Launch, Plug, and your presentation is ready ! Github : https://github.com/stornitz/better-slides
Grundlegende Informationen zur Erweiterung
Name | Better Slides |
ID | deojcdomfmllmflpoecpllilcifdikbo |
Offizielle URL | https://chromewebstore.google.com/detail/better-slides/deojcdomfmllmflpoecpllilcifdikbo |
Beschreibung | Automatically moves your Google Slides™ presentation and speakers notes on multiple monitors. |
Dateigröße | 13.28 KB |
Installationsanzahl | 66 |
Aktuelle Version | 1.0.2 |
Letztes Update | 2017-12-28 |
Veröffentlichungsdatum | 2017-12-28 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Stornitz |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/stornitz/better-slides |
Hilfeseite URL | https://github.com/stornitz/better-slides/issues |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Better Slides", "short_name": "Better Slides", "description": "Automatically moves your Google Slides\u2122 presentation and speakers notes on multiple monitors.", "version": "1.0.2", "permissions": [ "activeTab", "https:\/\/docs.google.com\/presentation\/d\/*", "tabs", "system.display" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/docs.google.com\/presentation\/d\/*\/edit*" ], "js": [ "content-edit.js" ] }, { "matches": [ "https:\/\/docs.google.com\/presentation\/d\/*\/present*" ], "js": [ "content-present.js" ] } ], "web_accessible_resources": [ "toinject-openSpeakers.js" ], "manifest_version": 2 } |