Element Capture
Screen capture any element on a webpage.
Hvad er Element Capture?
Element Capture er en Chrome-udvidelse udviklet af tlrobinson, og dens hovedfunktion er "Screen capture any element on a webpage.".
Download Element Capture-udvidelses-CRX-fil
Download Element Capture-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | kabgnkphidokfocflfangphgdjhkknjg |
Officiel URL | https://chrome.google.com/webstore/detail/element-capture/kabgnkphidokfocflfangphgdjhkknjg |
Beskrivelse | Screen capture any element on a webpage. |
Filstørrelse | 34.67 KB |
Antal Installationer | 828 |
Nuværende Version | 1.1 |
Senest Opdateret | 2015-09-30 |
Udgivelsesdato | 2015-09-30 |
Bedømmelse | 2.83/5 Samlet 42 Bedømmelser |
Udvikler | tlrobinson |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/tlrobinson/element-capture |
Understøttede Sprog | 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" } } |