Alice Keeler Webcam Snapshot

Take webcam snapshots and saves them into Google Drive.

Alice Keeler Webcam Snapshot란 무엇입니까?

Alice Keeler Webcam Snapshot은(는) AliceKeeler에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Take webcam snapshots and saves them into Google Drive."입니다.

확장 프로그램 스크린샷

screenshot

Alice Keeler Webcam Snapshot 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Alice Keeler Webcam Snapshot Alice Keeler Webcam Snapshot
ID nfiekeidmabgihoefbofbeepmcdglhji
공식 URL https://chrome.google.com/webstore/detail/alice-keeler-webcam-snaps/nfiekeidmabgihoefbofbeepmcdglhji
설명 Take webcam snapshots and saves them into Google Drive.
파일 크기 33.85 KB
설치 횟수 50,000
현재 버전 1.0.92
최근 업데이트 2021-04-17
출시 날짜 2019-03-23
평점 4.00/5 총 4 개의 평점
개발자 AliceKeeler
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://alicekeeler.com
도움말 페이지 URL https://docs.google.com/document/d/1spcx2BLNIUvoxmLm8xsBKD_dEP6JDJks2TkyGgxaTmk/edit?usp=sharing
개인정보 보호 정책 페이지 URL https://alicekeeler.com/privacy-policy
지원되는 언어 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"
    }
}