Element Screenshot
Take screenshot of any HTML element on a webpage.
Vad är Element Screenshot?
Element Screenshot är en Chrome-tillägg utvecklad av Tahin Rahman, och dess huvudfunktion är "Take screenshot of any HTML element on a webpage.".
Tilläggsskärmbilder
Ladda ner Element Screenshot-förlängningens CRX-fil
Ladda ner Element Screenshot-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | mhbapdljigafafoimcnnhagdclejnkcf |
Officiell webbadress | https://chrome.google.com/webstore/detail/element-screenshot/mhbapdljigafafoimcnnhagdclejnkcf |
Beskrivning | Take screenshot of any HTML element on a webpage. |
Filstorlek | 13.83 KB |
Antal Installationer | 2,354 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2015-08-24 |
Publiceringsdatum | 2015-08-24 |
Betyg | 3.54/5 Totalt 46 Betyg |
Utvecklare | Tahin Rahman |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | http://www.tahins.me |
Stödda Språk | 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" } } |