Simple Page Screenshot

Take a screenshot in your browser from a region and display it. You can then save the capture or copy the base 64 data URL.

Cos'è Simple Page Screenshot?

Simple Page Screenshot è un'estensione di Chrome sviluppata da paradoxxxzero, e la sua funzione principale è "Take a screenshot in your browser from a region and display it. You can then save the capture or copy the base 64 data URL.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Simple Page Screenshot

Scarica i file di estensione Simple Page Screenshot in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Take a screenshot in your browser from a region and display it. You can then save the capture or copy the base 64 data URL.


Right click on the image to save it or copy the datu URL with Copy image URL                    

Informazioni di Base sull'Estensione

Nome Simple Page Screenshot Simple Page Screenshot
ID llhehkgnfcfjbpknaljplknmimhggbpa
URL Ufficiale https://chrome.google.com/webstore/detail/simple-page-screenshot/llhehkgnfcfjbpknaljplknmimhggbpa
Descrizione Take a screenshot in your browser from a region and display it. You can then save the capture or copy the base 64 data URL.
Dimensione del File 8.71 KB
Conteggio Installazioni 255
Versione Corrente 1.0.0
Ultimo Aggiornamento 2014-04-04
Data di Pubblicazione 2014-04-04
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore paradoxxxzero
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/paradoxxxzero/simple_page_screenshot
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Page Screenshot",
    "version": "1.0.0",
    "author": "Florian Mounier - paradoxxxzero",
    "homepage_url": "https:\/\/github.com\/paradoxxxzero\/simple_page_screenshot",
    "description": "Take a screenshot in your browser from a region and display it. You can then save the capture or copy the base 64 data URL.",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_title": "",
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        ""
    ]
}