Screen Capture and download

Capture current page and download the image.

Screen Capture and download là gì?

Screen Capture and download là một tiện ích mở rộng Chrome được phát triển bởi extensioncreatorsllc, và tính năng chính của nó là "Capture current page and download the image.".

Ả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 Screen Capture and download

Tải xuống các tệp mở rộng Screen Capture and download 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

                        This chrome extension allows user to take the screen shot of current page in chrome and download it as a image.                    

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

Tên Screen Capture and download Screen Capture and download
ID gdnehbhmjdcdinmninaodlclfphjkplk
URL Chính Thức https://chrome.google.com/webstore/detail/screen-capture-and-downlo/gdnehbhmjdcdinmninaodlclfphjkplk
Mô tả Capture current page and download the image.
Kích Thước Tệp 157 KB
Số Lần Cài Đặt 6,726
Phiên Bản Hiện Tại 1.5
Cập Nhật Lần Cuối 2019-08-27
Ngày Phát Hành 2019-08-27
Đánh Giá 4.52/5 Tổng số 25 Đánh Giá
Nhà Phát Triển extensioncreatorsllc
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://bornsecret.com/privacy.html
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Screen Capture and download",
    "version": "1.5",
    "description": "Capture current page and download the image.",
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content1.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Capture screen and download!",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icon128.png",
        "16": "icon.png",
        "32": "icon32.png",
        "48": "icon48.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+P"
            }
        }
    },
    "permissions": [
        "activeTab",
        "downloads",
        ""
    ],
    "manifest_version": 2
}