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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

DriveSlides by Matt Miller and Alice Keeler 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
    }
}