Better Slides
Automatically moves your Google Slides™ presentation and speakers notes on multiple monitors.
What is Better Slides?
Better Slides is a Chrome extension developed by Stornitz, and its main feature is "Automatically moves your Google Slides™ presentation and speakers notes on multiple monitors.".
Extension Screenshots
Download Better Slides Extension CRX File
Download Better Slides extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Better Slides |
ID | deojcdomfmllmflpoecpllilcifdikbo |
Official URL | https://chromewebstore.google.com/detail/better-slides/deojcdomfmllmflpoecpllilcifdikbo |
Description | Automatically moves your Google Slides™ presentation and speakers notes on multiple monitors. |
File Size | 13.28 KB |
Installation Count | 66 |
Current Version | 1.0.2 |
Last Updated | 2017-12-28 |
Publish Date | 2017-12-28 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Stornitz |
Payment Type | free |
Extension Website | https://github.com/stornitz/better-slides |
Help Page URL | https://github.com/stornitz/better-slides/issues |
Supported Languages | 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 } |