Element Capture
Screen capture any element on a webpage.
Element Captureとは何ですか?
Element Captureはtlrobinsonによって開発されたChromeの拡張機能で、その主な機能は「Screen capture any element on a webpage.」です。
Element Capture拡張機能のCRXファイルをダウンロード
Element Capture拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This is a Chrome extension which will screen capture any HTML element of your choosing. Click the camera icon in the URL bar to begin selection, then hover over any element and click to capture an image and open it in a new tab.
拡張機能の基本情報
名前 | |
ID | kabgnkphidokfocflfangphgdjhkknjg |
公式URL | https://chrome.google.com/webstore/detail/element-capture/kabgnkphidokfocflfangphgdjhkknjg |
説明 | Screen capture any element on a webpage. |
ファイルサイズ | 34.67 KB |
インストール数 | 828 |
現在のバージョン | 1.1 |
最終更新日 | 2015-09-30 |
公開日 | 2015-09-30 |
評価 | 2.83/5 合計 42 レビュー |
開発者 | tlrobinson |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/tlrobinson/element-capture |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Element Capture", "version": "1.1", "manifest_version": 2, "description": "Screen capture any element on a webpage.", "page_action": { "default_icon": "icon48.png" }, "permissions": [ "activeTab" ], "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" } } |