Element Screenshot
Take screenshot of any HTML element on a webpage.
What is Element Screenshot?
Element Screenshot is a Chrome extension developed by Tahin Rahman, and its main feature is "Take screenshot of any HTML element on a webpage.".
Extension Screenshots
Download Element Screenshot Extension CRX File
Download Element Screenshot extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | mhbapdljigafafoimcnnhagdclejnkcf |
Official URL | https://chrome.google.com/webstore/detail/element-screenshot/mhbapdljigafafoimcnnhagdclejnkcf |
Description | Take screenshot of any HTML element on a webpage. |
File Size | 13.83 KB |
Installation Count | 2,354 |
Current Version | 1.1 |
Last Updated | 2015-08-24 |
Publish Date | 2015-08-24 |
Rating | 3.54/5 Total 46 Ratings |
Developer | Tahin Rahman |
[email protected] | |
Payment Type | free |
Extension Website | http://www.tahins.me |
Supported Languages | 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" } } |