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 là gì?

SNOW screenshot extension là một tiện ích mở rộng Chrome được phát triển bởi sorogovets.nikolay, và tính năng chính của nó là "This extension allows the user take screenshot of the page and store it in the appropriate google drive location".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng SNOW screenshot extension

Tải xuống các tệp mở rộng SNOW screenshot extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên SNOW screenshot extension SNOW screenshot extension
ID embgcdfaomglnbipimalgemmfmfhdpfn
URL Chính Thức https://chromewebstore.google.com/detail/snow-screenshot-extension/embgcdfaomglnbipimalgemmfmfhdpfn
Mô tả This extension allows the user take screenshot of the page and store it in the appropriate google drive location
Kích Thước Tệp 84.03 KB
Số Lần Cài Đặt 101
Phiên Bản Hiện Tại 0.0.8
Cập Nhật Lần Cuối 2022-01-06
Ngày Phát Hành 2019-06-26
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển sorogovets.nikolay
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}