Lightweight Screenshot

Take screenshots. Also works for full page and custom-size screenshots.

Lightweight Screenshot là gì?

Lightweight Screenshot là một tiện ích mở rộng Chrome được phát triển bởi Adam Feor, và tính năng chính của nó là "Take screenshots. Also works for full page and custom-size screenshots.".

Ả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 Lightweight Screenshot

Tải xuống các tệp mở rộng Lightweight Screenshot 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

                        A simple screenshot extension for Chrome. Supports taking screenshots of the current window, of an entire page (scrolling) and of a custom area.                    

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

Tên Lightweight Screenshot Lightweight Screenshot
ID eapeifgbfommamnclhbppicejicnpooc
URL Chính Thức https://chromewebstore.google.com/detail/lightweight-screenshot/eapeifgbfommamnclhbppicejicnpooc
Mô tả Take screenshots. Also works for full page and custom-size screenshots.
Kích Thước Tệp 39.4 KB
Số Lần Cài Đặt 478
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2018-04-29
Ngày Phát Hành 2018-04-29
Đánh Giá 4.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Adam Feor
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": 2,
    "name": "Lightweight Screenshot",
    "description": "Take screenshots. Also works for full page and custom-size screenshots.",
    "version": "1.1",
    "icons": {
        "19": "images\/monitoriconsmall.png",
        "48": "images\/monitoricon48.png",
        "128": "images\/monitoricon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "images\/cus.png",
        "image\/vis.png",
        "images\/full.png",
        "images\/check.png",
        "images\/cross.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "images\/monitoriconsmall.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "",
        "downloads"
    ]
}