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

下載SNOW screenshot extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
        ]
    }
}