Screenshot Tool

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

什么是Screenshot Tool?

Screenshot Tool是由fullscreenshoter开发的Chrome扩展程序,该扩展的主要功能是“Screenshot Tool is an easy way to take a screenshot of an entire page or part.”。

扩展截图

screenshot
screenshot

下载Screenshot Tool扩展crx文件

下载Screenshot Tool扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Screenshot Tool Screenshot Tool
ID findidccpcggilpobkmigcgniphhkdpj
官方URL https://chrome.google.com/webstore/detail/findidccpcggilpobkmigcgniphhkdpj
简介 Screenshot Tool is an easy way to take a screenshot of an entire page or part.
文件大小 46.07 KB
安装次数 68
当前版本 0.0.1
更新时间 2021-02-22
上架时间 2021-02-16
开发者 fullscreenshoter
电子邮箱 [email protected]
付费类型 free
支持的语言 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",
        ""
    ]
}