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是由https://alicekeeler.com开发的Chrome扩展程序,该扩展的主要功能是“Create a Google Slides presentation out of a Drive folder of images.”。
扩展截图
下载DriveSlides by Matt Miller and Alice Keeler扩展crx文件
下载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" } } |