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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย chudaol และคุณลักษณะหลักของมันคือ "This extension draws a square which can be resized and dragged to highlight whatever part of the page before capturing it."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Highlight and Capture

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}