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文件

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

扩展使用说明

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