DriveSlides by Matt Miller and Alice Keeler
Create a Google Slides presentation out of a Drive folder of images.
Co to jest DriveSlides by Matt Miller and Alice Keeler?
DriveSlides by Matt Miller and Alice Keeler to rozszerzenie Chrome opracowane przez https://alicekeeler.com, a jego główną funkcją jest „Create a Google Slides presentation out of a Drive folder of images.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia DriveSlides by Matt Miller and Alice Keeler
Pobierz pliki rozszerzeń DriveSlides by Matt Miller and Alice Keeler w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Unfortunately DriveSlides is no longer available. Please use Photo to Slides Add-on from the G Suite Marketplace https://gsuite.google.com/marketplace/app/photos_to_slides/647697115592
Podstawowe informacje o rozszerzeniu
Nazwa | DriveSlides by Matt Miller and Alice Keeler |
ID | ijnjlojbdhgpamjiflocklhfeciokfdl |
Oficjalny URL | https://chromewebstore.google.com/detail/driveslides-by-matt-mille/ijnjlojbdhgpamjiflocklhfeciokfdl |
Opis | Create a Google Slides presentation out of a Drive folder of images. |
Rozmiar pliku | 126 KB |
Liczba instalacji | 27,942 |
Aktualna Wersja | 1.0.13 |
Ostatnia Aktualizacja | 2020-07-03 |
Data Publikacji | 2020-07-02 |
Ocena | 4.08/5 Łącznie 24 Oceny |
Deweloper | https://alicekeeler.com |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://gsuite.google.com/marketplace/app/photos_to_slides/647697115592 |
Adres URL Strony Pomocy | https://gsuite.google.com/marketplace/app/photos_to_slides/647697115592 |
Adres URL Strony Polityki Prywatności | https://alicekeeler.com/privacy-policy |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "1.0.13", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "permissions": [ "identity", "storage", "tabs", "https:\/\/drive.google.com\/drive\/*" ], "oauth2": { "client_id": "836656774926-59vggdehouo835pvt094qe5chlgialku.apps.googleusercontent.com", "scopes": [ "https:\/\/www.googleapis.com\/auth\/drive.readonly", "https:\/\/www.googleapis.com\/auth\/drive.file", "https:\/\/www.googleapis.com\/auth\/presentations" ] }, "content_scripts": [ { "matches": [ "https:\/\/drive.google.com\/drive\/*" ], "js": [ "scripts\/contentscript.js" ] } ], "options_ui": { "page": "options.html", "chrome_style": true }, "page_action": { "default_icon": { "19": "images\/icon-19.png", "38": "images\/icon-38.png" }, "default_title": "DriveSlides" } } |