Alice Keeler Webcam Snapshot

Take webcam snapshots and saves them into Google Drive.

Was ist Alice Keeler Webcam Snapshot?

Alice Keeler Webcam Snapshot ist eine Chrome-Erweiterung, die von AliceKeeler entwickelt wurde, und ihr Hauptmerkmal ist "Take webcam snapshots and saves them into Google Drive.".

Erweiterungsscreenshots

screenshot

Alice Keeler Webcam Snapshot-Erweiterungs-CRX-Datei herunterladen

Laden Sie Alice Keeler Webcam Snapshot-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Alice Keeler Webcam Snapshot Alice Keeler Webcam Snapshot
ID nfiekeidmabgihoefbofbeepmcdglhji
Offizielle URL https://chrome.google.com/webstore/detail/alice-keeler-webcam-snaps/nfiekeidmabgihoefbofbeepmcdglhji
Beschreibung Take webcam snapshots and saves them into Google Drive.
Dateigröße 33.85 KB
Installationsanzahl 50,000
Aktuelle Version 1.0.92
Letztes Update 2021-04-17
Veröffentlichungsdatum 2019-03-23
Bewertung 4.00/5 Insgesamt 4 Bewertungen
Entwickler AliceKeeler
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://alicekeeler.com
Hilfeseite URL https://docs.google.com/document/d/1spcx2BLNIUvoxmLm8xsBKD_dEP6JDJks2TkyGgxaTmk/edit?usp=sharing
URL der Datenschutzrichtlinien-Seite https://alicekeeler.com/privacy-policy
Unterstützte Sprachen 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"
    }
}