Element Capture

Capture an element in html

Element Capture란 무엇입니까?

Element Capture은(는) hirosuke suzuki에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Capture an element in html"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Element Capture 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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