Element Capture

Capture an element in html

Element Captureとは何ですか?

Element Captureはhirosuke suzukiによって開発されたChromeの拡張機能で、その主な機能は「Capture an element in html」です。

拡張機能のスクリーンショット

screenshot
screenshot

Element Capture拡張機能のCRXファイルをダウンロード

Element Capture拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Webページの任意の要素を完全に複製し、Pngファイルとして保存するための拡張です。

- 特徴
  - Chromeで表示された画面をそのまま保存します。
  - Htmlエレメントを選択し、キャプチャ画像を保存することが可能です。

- 注意
  - ピンチズームされた画面には対応していません。
 
-------------------

Element Capture lets you save any element on a web page as a *.png image.

- Features:
  - Save images exactly as they appear on Chrome. 
  - Save any individual HTML element as an image.                    

拡張機能の基本情報

名前 Element Capture Element Capture
ID gecogpoijmggeflfbigninpaplcjofdh
公式URL https://chromewebstore.google.com/detail/element-capture/gecogpoijmggeflfbigninpaplcjofdh
説明 Capture an element in html
ファイルサイズ 71.93 KB
インストール数 233
現在のバージョン 0.0.2
最終更新日 2019-11-20
公開日 2019-11-19
評価 3.40/5 合計 5 レビュー
開発者 hirosuke suzuki
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Element Capture",
    "description": "Capture an element in html",
    "version": "0.0.2",
    "browser_action": {
        "default_icon": "128.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "web_accessible_resources": [
        "48.png"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/vendor.js",
                "js\/content_script.js"
            ]
        }
    ],
    "background": {
        "matches": [
            ""
        ],
        "scripts": [
            "js\/vendor.js",
            "js\/background.js"
        ]
    },
    "permissions": [
        "storage",
        "tabs",
        ""
    ]
}