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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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",
        ""
    ]
}