Better Slides
Automatically moves your Google Slides™ presentation and speakers notes on multiple monitors.
Hvad er Better Slides?
Better Slides er en Chrome-udvidelse udviklet af Stornitz, og dens hovedfunktion er "Automatically moves your Google Slides™ presentation and speakers notes on multiple monitors.".
Udvidelsesskærmbilleder
Download Better Slides-udvidelses-CRX-fil
Download Better Slides-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | Better Slides |
ID | deojcdomfmllmflpoecpllilcifdikbo |
Officiel URL | https://chromewebstore.google.com/detail/better-slides/deojcdomfmllmflpoecpllilcifdikbo |
Beskrivelse | Automatically moves your Google Slides™ presentation and speakers notes on multiple monitors. |
Filstørrelse | 13.28 KB |
Antal Installationer | 66 |
Nuværende Version | 1.0.2 |
Senest Opdateret | 2017-12-28 |
Udgivelsesdato | 2017-12-28 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | Stornitz |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/stornitz/better-slides |
Hjælpeside-URL | https://github.com/stornitz/better-slides/issues |
Understøttede Sprog | 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 } |