Alice Keeler Webcam Snapshot

Take webcam snapshots and saves them into Google Drive.

Cos'è Alice Keeler Webcam Snapshot?

Alice Keeler Webcam Snapshot è un'estensione di Chrome sviluppata da AliceKeeler, e la sua funzione principale è "Take webcam snapshots and saves them into Google Drive.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Alice Keeler Webcam Snapshot

Scarica i file di estensione Alice Keeler Webcam Snapshot in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Use the webcam to take a snapshot. Images are saved to a folder in Google Drive and the link to the screenshot is copied to your clipboard. Suggestion to change the sharing permissions on the folder in Google Drive to "Anyone with the link can view" when wanting to share the URL to the image.                    

Informazioni di Base sull'Estensione

Nome Alice Keeler Webcam Snapshot Alice Keeler Webcam Snapshot
ID nfiekeidmabgihoefbofbeepmcdglhji
URL Ufficiale https://chrome.google.com/webstore/detail/alice-keeler-webcam-snaps/nfiekeidmabgihoefbofbeepmcdglhji
Descrizione Take webcam snapshots and saves them into Google Drive.
Dimensione del File 33.85 KB
Conteggio Installazioni 50,000
Versione Corrente 1.0.92
Ultimo Aggiornamento 2021-04-17
Data di Pubblicazione 2019-03-23
Valutazione 4.00/5 Totale 4 Valutazioni
Sviluppatore AliceKeeler
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://alicekeeler.com
URL della Pagina di Aiuto https://docs.google.com/document/d/1spcx2BLNIUvoxmLm8xsBKD_dEP6JDJks2TkyGgxaTmk/edit?usp=sharing
URL della Pagina della Politica sulla Privacy https://alicekeeler.com/privacy-policy
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "1.0.92",
    "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": [
        "storage",
        "identity",
        "activeTab",
        "tabs",
        ""
    ],
    "oauth2": {
        "client_id": "805195903806-ego5q5p10s2cicc3rlgkvgllaaa0ponv.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/drive.file"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "Webcam Snapshot",
        "default_popup": "popup.html"
    }
}