Google Slides Auto Resize Speaker Notes
Automatically resize the slide previews when the Speaker Notes window is resized, or drag the sidebar to manually select a size.
Google Slides Auto Resize Speaker Notes là gì?
Google Slides Auto Resize Speaker Notes là một tiện ích mở rộng Chrome được phát triển bởi https://deanattali.com, và tính năng chính của nó là "Automatically resize the slide previews when the Speaker Notes window is resized, or drag the sidebar to manually select a size.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Google Slides Auto Resize Speaker Notes
Tải xuống các tệp mở rộng Google Slides Auto Resize Speaker Notes dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Code available at: https://github.com/daattali/gslides-betternotes-extension Show your support :) http://deanattali.com/aboutme/#feed-meeee Description ======== The slide previews in the Speaker Notes window of Google Slides are tiny and unreadable. This extension fixes this in two ways: the slides are automatically enlarged when the Speaker Notes window is resized, and you can also drag the sidebar to manually select the perfect slides size. If you've ever used Google Slides (or MS PowerPoint/anything similar), you may be aware of the Speaker Notes feature - it allows you to view the current and next slides as well as the text notes for the current slide . However, for some weird reason, the Speaker Notes in Google Slides only allocates a very small area for the slides preview, while giving the notes almost all the space. There is no possible way to resize the slide thumbnail, which makes the slide preview almost useless. Demo ======== If you don't have a Google Slides document to experiment with/verify this problem, you can test it out with this sample Google Slides presentation: https://docs.google.com/presentation/d/18svsKPFNQrBLOSAmOouD410kX9fuaNp3e1K1GTTBLiU/edit?usp=sharing Extra features ======== - Resizes thumbnail preview for the Next slide - Ability to move the timer to the right because it sometimes takes up a large portion of the screen and hides some of the slide - Works in offline mode Supported languages ======== This extension will work if your Chrome language is one of the following: English, French, Spanish, German, Dutch, Hebrew. If you want me to add support for another language, please open an issue on the project page: https://github.com/daattali/gslides-betternotes-extension/issues Motivation ======== As preparation for my committee meeting, I used Google Slides to make my presentation. Shortly after starting, before havin any actual content in my presentation, I noticed that the Speaker Notes window is basically useless in its current form because of how small the slide previes are. After fiddling with the speaker notes window JavaScript and CSS for a couple hours, I decided that a much better use of my time instead of working on my committee meeting would be to make this extension. I then proceeded to spend the next several hours making the draft version of this extension, and thus successfully procrastinated from my real work for many many hours! On a more serious note - I do think this is a very essential tool for anyone who uses Google Slides to give presentations.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Google Slides Auto Resize Speaker Notes |
ID | piciggpbidhfbpefjjbomcgomanjfbeb |
URL Chính Thức | https://chromewebstore.google.com/detail/google-slides-auto-resize/piciggpbidhfbpefjjbomcgomanjfbeb |
Mô tả | Automatically resize the slide previews when the Speaker Notes window is resized, or drag the sidebar to manually select a size. |
Kích Thước Tệp | 77.13 KB |
Số Lần Cài Đặt | 8,155 |
Phiên Bản Hiện Tại | 1.2 |
Cập Nhật Lần Cuối | 2023-04-28 |
Ngày Phát Hành | 2018-11-14 |
Đánh Giá | 4.64/5 Tổng số 45 Đánh Giá |
Nhà Phát Triển | https://deanattali.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/daattali/gslides-betternotes-extension |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Google Slides Auto Resize Speaker Notes", "version": "1.2", "manifest_version": 2, "description": "Automatically resize the slide previews when the Speaker Notes window is resized, or drag the sidebar to manually select a size.", "page_action": { "default_icon": "img\/icon-48.png", "default_popup": "html\/gsbn-popup.html", "default_title": "Google Slides Auto Resize Speaker Notes" }, "background": { "scripts": [ "js\/gsbn-background.js", "js\/gsbn-common.js" ], "persistent": false }, "permissions": [ "declarativeContent", "https:\/\/docs.google.com\/presentation\/*", "https:\/\/docs.google.com\/*\/presentation\/*", "storage" ], "icons": { "16": "img\/icon-16.png", "48": "img\/icon-48.png", "128": "img\/icon-128.png" }, "options_page": "html\/gsbn-options.html", "content_scripts": [ { "matches": [ "https:\/\/docs.google.com\/*\/presentation\/*\/present*slide*", "https:\/\/docs.google.com\/presentation\/*\/present*slide*", "https:\/\/docs.google.com\/presentation\/present*slide*" ], "match_about_blank": true, "all_frames": true, "js": [ "js\/gsbn-common.js", "js\/gsbn.js" ] } ], "homepage_url": "https:\/\/github.com\/daattali\/gslides-betternotes-extension" } |