Element Screenshot

Take screenshot of any HTML element on a webpage.

什麼是Element Screenshot?

Element Screenshot是由Tahin Rahman開發的Chrome擴展程式,該擴展的主要功能是“Take screenshot of any HTML element on a webpage.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Element Screenshot擴展crx文件

下載Element Screenshot擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Element Screenshot
===============

This is a Chrome extension which will take screenshot of any HTML element in a webpage.

Click the camera icon in the URL bar, hover over the element you want to capture and click to take the screenshot.

This extension was originally developed by Robinson and available here (which is not maintained anymore): https://chrome.google.com/webstore/detail/element-capture/kabgnkphidokfocflfangphgdjhkknjg

My version is a bug fixed version of the original.                    

擴展基本資訊

名稱 Element Screenshot Element Screenshot
ID mhbapdljigafafoimcnnhagdclejnkcf
官方網址 https://chrome.google.com/webstore/detail/element-screenshot/mhbapdljigafafoimcnnhagdclejnkcf
簡介 Take screenshot of any HTML element on a webpage.
檔案大小 13.83 KB
安裝次數 2,354
目前版本 1.1
更新時間 2015-08-24
上架時間 2015-08-24
評分 3.54/5 共 46 次評分
開發者 Tahin Rahman
電子郵箱 [email protected]
付費類型 free
擴展官網 http://www.tahins.me
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Element Screenshot",
    "version": "1.1",
    "manifest_version": 2,
    "description": "Take screenshot of any HTML element on a webpage.",
    "page_action": {
        "default_icon": "icon48.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}