DriveSlides by Matt Miller and Alice Keeler

Create a Google Slides presentation out of a Drive folder of images.

O que é DriveSlides by Matt Miller and Alice Keeler?

DriveSlides by Matt Miller and Alice Keeler é uma extensão do Chrome desenvolvida por https://alicekeeler.com, e sua principal característica é "Create a Google Slides presentation out of a Drive folder of images.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão DriveSlides by Matt Miller and Alice Keeler

Baixe arquivos de extensão DriveSlides by Matt Miller and Alice Keeler no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome DriveSlides by Matt Miller and Alice Keeler DriveSlides by Matt Miller and Alice Keeler
ID ijnjlojbdhgpamjiflocklhfeciokfdl
URL Oficial https://chromewebstore.google.com/detail/driveslides-by-matt-mille/ijnjlojbdhgpamjiflocklhfeciokfdl
Descrição Create a Google Slides presentation out of a Drive folder of images.
Tamanho do Arquivo 126 KB
Contagem de Instalações 27,942
Versão Atual 1.0.13
Última Atualização 2020-07-03
Data de Publicação 2020-07-02
Classificação 4.08/5 Total de 24 Avaliações
Desenvolvedor https://alicekeeler.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://gsuite.google.com/marketplace/app/photos_to_slides/647697115592
URL da Página de Ajuda https://gsuite.google.com/marketplace/app/photos_to_slides/647697115592
URL da Página de Política de Privacidade https://alicekeeler.com/privacy-policy
Idiomas Suportados 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"
    }
}