SNOW screenshot extension

This extension allows the user take screenshot of the page and store it in the appropriate google drive location

SNOW screenshot extension란 무엇입니까?

SNOW screenshot extension은(는) sorogovets.nikolay에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension allows the user take screenshot of the page and store it in the appropriate google drive location"입니다.

확장 프로그램 스크린샷

screenshot

SNOW screenshot extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Snow screenshot upload extension needed to make screenshot of current page and upload it to specific folder on Google drive.
That extension also allows to select directory before upload.

What's new in v 0.0.8:
- Updated UI with new styles
- Fixed icons paths
- Updated to support Manifest V3
- Added validation Google folder Uri in settings.                    

확장 프로그램 기본 정보

이름 SNOW screenshot extension SNOW screenshot extension
ID embgcdfaomglnbipimalgemmfmfhdpfn
공식 URL https://chromewebstore.google.com/detail/snow-screenshot-extension/embgcdfaomglnbipimalgemmfmfhdpfn
설명 This extension allows the user take screenshot of the page and store it in the appropriate google drive location
파일 크기 84.03 KB
설치 횟수 101
현재 버전 0.0.8
최근 업데이트 2022-01-06
출시 날짜 2019-06-26
평점 5.00/5 총 1 개의 평점
개발자 sorogovets.nikolay
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "SNOW screenshot extension",
    "description": "This extension allows the user take screenshot of the page and store it in the appropriate google drive location",
    "version": "0.0.8",
    "icons": {
        "16": ".\/img\/icon_16.png",
        "48": ".\/img\/icon_48.png",
        "128": ".\/img\/icon_128.png"
    },
    "permissions": [
        "storage",
        "identity",
        "tabs",
        "activeTab",
        "notifications",
        "webNavigation",
        "scripting"
    ],
    "host_permissions": [
        "",
        "*:\/\/*.google.com\/",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "action": {
        "default_icon": ".\/img\/icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/coxauto.service-now.com\/time*\/**"
            ],
            "js": [
                ".\/js\/content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "service_worker": ".\/js\/background.js",
        "type": "module"
    },
    "content_security_policy": {
        "script-src": "'self' https:\/\/apis.google.com",
        "object-src": "'self'"
    },
    "options_page": "options.html",
    "oauth2": {
        "client_id": "384905528545-jcek023539jsr0c42dtbsldeaav37knb.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/drive"
        ]
    }
}