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