Element Screenshot

Take screenshot of any HTML element on a webpage.

Qu'est-ce que Element Screenshot ?

Element Screenshot est une extension Chrome développée par Tahin Rahman, et sa fonction principale est "Take screenshot of any HTML element on a webpage.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Element Screenshot

Téléchargez les fichiers d'extension Element Screenshot 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

                        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.                    

Informations de Base sur l'Extension

Nom Element Screenshot Element Screenshot
ID mhbapdljigafafoimcnnhagdclejnkcf
URL Officiel https://chrome.google.com/webstore/detail/element-screenshot/mhbapdljigafafoimcnnhagdclejnkcf
Description Take screenshot of any HTML element on a webpage.
Taille du Fichier 13.83 KB
Nombre d'Installations 2,354
Version Actuelle 1.1
Dernière Mise à Jour 2015-08-24
Date de Publication 2015-08-24
Évaluation 3.54/5 Total 46 Évaluations
Développeur Tahin Rahman
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://www.tahins.me
Langues Prises en Charge 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"
    }
}