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 là gì?

Highlight and Capture là một tiện ích mở rộng Chrome được phát triển bởi chudaol, và tính năng chính của nó là "This extension draws a square which can be resized and dragged to highlight whatever part of the page before capturing it.".

Ả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 Highlight and Capture

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

                        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.                    

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

Tên Highlight and Capture Highlight and Capture
ID icimcjcibbhngphajolgbdbjioidaomg
URL Chính Thức https://chrome.google.com/webstore/detail/highlight-and-capture/icimcjcibbhngphajolgbdbjioidaomg
Mô tả This extension draws a square which can be resized and dragged to highlight whatever part of the page before capturing it.
Kích Thước Tệp 248 KB
Số Lần Cài Đặt 385
Phiên Bản Hiện Tại 1.5
Cập Nhật Lần Cuối 2013-10-29
Ngày Phát Hành 2013-10-29
Đánh Giá 4.00/5 Tổng số 8 Đánh Giá
Nhà Phát Triển chudaol
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": "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"
            ]
        }
    ]
}