Element Capture
Screen capture any element on a webpage.
Wat is Element Capture?
Element Capture is een Chrome-extensie ontwikkeld door tlrobinson, en de belangrijkste functie is "Screen capture any element on a webpage.".
Download het CRX-bestand van de extensie Element Capture
Download Element Capture-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | kabgnkphidokfocflfangphgdjhkknjg |
Officiële URL | https://chrome.google.com/webstore/detail/element-capture/kabgnkphidokfocflfangphgdjhkknjg |
Beschrijving | Screen capture any element on a webpage. |
Bestandsgrootte | 34.67 KB |
Aantal Installaties | 828 |
Huidige Versie | 1.1 |
Laatst Bijgewerkt | 2015-09-30 |
Publicatiedatum | 2015-09-30 |
Beoordeling | 2.83/5 Totaal 42 Beoordelingen |
Ontwikkelaar | tlrobinson |
Betalingswijze | free |
Extensiewebsite | https://github.com/tlrobinson/element-capture |
Ondersteunde Talen | 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" } } |