DriveSlides by Matt Miller and Alice Keeler
Create a Google Slides presentation out of a Drive folder of images.
Что такое DriveSlides by Matt Miller and Alice Keeler?
DriveSlides by Matt Miller and Alice Keeler - это расширение Chrome, разработанное https://alicekeeler.com, и его основная функция - "Create a Google Slides presentation out of a Drive folder of images.".
Снимки экрана расширения
Скачать файл CRX расширения DriveSlides by Matt Miller and Alice Keeler
Скачайте файлы расширений DriveSlides by Matt Miller and Alice Keeler в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | DriveSlides by Matt Miller and Alice Keeler |
ID | ijnjlojbdhgpamjiflocklhfeciokfdl |
Официальный URL | https://chromewebstore.google.com/detail/driveslides-by-matt-mille/ijnjlojbdhgpamjiflocklhfeciokfdl |
Описание | Create a Google Slides presentation out of a Drive folder of images. |
Размер файла | 126 KB |
Количество установок | 27,942 |
Текущая Версия | 1.0.13 |
Последнее Обновление | 2020-07-03 |
Дата публикации | 2020-07-02 |
Рейтинг | 4.08/5 Всего 24 оценок |
Разработчик | https://alicekeeler.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://gsuite.google.com/marketplace/app/photos_to_slides/647697115592 |
URL страницы помощи | https://gsuite.google.com/marketplace/app/photos_to_slides/647697115592 |
URL страницы политики конфиденциальности | https://alicekeeler.com/privacy-policy |
Поддерживаемые языки | 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" } } |