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文件

下载Alice Keeler Webcam Snapshot扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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