Highlight and Capture

This extension draws a square which can be resized and dragged to highlight whatever part of the page before capturing it.

Highlight and Capture란 무엇입니까?

Highlight and Capture은(는) chudaol에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension draws a square which can be resized and dragged to highlight whatever part of the page before capturing it."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Highlight and Capture 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Not only allows to capture a visible area of current browser's tab, but also gives an ability to highlight specific areas of it before capturing.

## To highlight areas ##
Select Highlight and Capture->Square Here! from the context menu.
The red square appears. You can resize it and drag. Also you can create as many highlighters as you want. To delete them just double-click on them!

## To take screenshot ##
Select Highlight and Capture->Capture! from the context menu.
The image of the visible area of current window opens in new window.                    

확장 프로그램 기본 정보

이름 Highlight and Capture Highlight and Capture
ID icimcjcibbhngphajolgbdbjioidaomg
공식 URL https://chrome.google.com/webstore/detail/highlight-and-capture/icimcjcibbhngphajolgbdbjioidaomg
설명 This extension draws a square which can be resized and dragged to highlight whatever part of the page before capturing it.
파일 크기 248 KB
설치 횟수 385
현재 버전 1.5
최근 업데이트 2013-10-29
출시 날짜 2013-10-29
평점 4.00/5 총 8 개의 평점
개발자 chudaol
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Highlight and Capture",
    "description": "This extension draws a square which can be resized and dragged to highlight whatever part of the page before capturing it.",
    "version": "1.5",
    "permissions": [
        "contextMenus",
        "tabs",
        ""
    ],
    "web_accessible_resources": [
        "\/vendor\/jquery\/images\/ui-icons_222222_256x240.png"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "vendor\/jquery\/jquery-2.0.3.js",
            "background.js"
        ]
    },
    "icons": {
        "16": "icon2.png",
        "48": "icon2.png",
        "128": "icon2.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "vendor\/jquery\/jquery-2.0.3.js",
                "vendor\/jquery\/jquery-ui.min.js",
                "script.js"
            ],
            "css": [
                "vendor\/jquery\/jquery-ui.min.css",
                "style.css"
            ]
        }
    ]
}