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.」です。
拡張機能のスクリーンショット
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.
拡張機能の基本情報
名前 | |
ID | mhbapdljigafafoimcnnhagdclejnkcf |
公式URL | 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 |
Eメール | [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" } } |