Element Capture
Screen capture any element on a webpage.
Qu'est-ce que Element Capture ?
Element Capture est une extension Chrome développée par tlrobinson, et sa fonction principale est "Screen capture any element on a webpage.".
Télécharger le fichier CRX de l'extension Element Capture
Téléchargez les fichiers d'extension Element Capture au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | kabgnkphidokfocflfangphgdjhkknjg |
URL Officiel | https://chrome.google.com/webstore/detail/element-capture/kabgnkphidokfocflfangphgdjhkknjg |
Description | Screen capture any element on a webpage. |
Taille du Fichier | 34.67 KB |
Nombre d'Installations | 828 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2015-09-30 |
Date de Publication | 2015-09-30 |
Évaluation | 2.83/5 Total 42 Évaluations |
Développeur | tlrobinson |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/tlrobinson/element-capture |
Langues Prises en Charge | 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" } } |