Screenshot Tool

Screenshot Tool is an easy way to take a screenshot of an entire page or part.

Screenshot Tool là gì?

Screenshot Tool là một tiện ích mở rộng Chrome được phát triển bởi fullscreenshoter, và tính năng chính của nó là "Screenshot Tool is an easy way to take a screenshot of an entire page or part.".

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

screenshot
screenshot

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

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

                        Take any screenshots from your favorite sites with the screenshot tool.

The extension is very easy to use. First you need to open the page from which you want to take a screenshot. Then click the extension icon in your browser and in the window that appears, select the desired screenshot view. You can make both the visible part of the page and the entire page of the site. Click on the button and after a few seconds the file will start downloading at the bottom of the browser window in jpeg format.

The extension is useful for office workers when you need to take a screenshot to complete a task. And also all kinds of screenshots for preparing presentations. The Screenshot tool has no functionality for cropping, scaling, or drawing on the finished screenshot.                    

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

Tên Screenshot Tool Screenshot Tool
ID findidccpcggilpobkmigcgniphhkdpj
URL Chính Thức https://chrome.google.com/webstore/detail/findidccpcggilpobkmigcgniphhkdpj
Mô tả Screenshot Tool is an easy way to take a screenshot of an entire page or part.
Kích Thước Tệp 46.07 KB
Số Lần Cài Đặt 68
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2021-02-22
Ngày Phát Hành 2021-02-16
Nhà Phát Triển fullscreenshoter
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Screenshot Tool",
    "description": "Screenshot Tool is an easy way to take a screenshot of an entire page or part.",
    "manifest_version": 2,
    "version": "0.0.1",
    "browser_action": {
        "default_icon": "images\/icon_128.png",
        "default_popup": "popup.html"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "bundle.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "selector.js",
                "mousetrap.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png",
        "256": "images\/icon_256.png"
    },
    "permissions": [
        "activeTab",
        ""
    ]
}