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.

Wat is Simple Page Screenshot?

Simple Page Screenshot is een Chrome-extensie ontwikkeld door paradoxxxzero, en de belangrijkste functie is "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.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Simple Page Screenshot

Download Simple Page Screenshot-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

                        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                    

Basisinformatie over de Extensie

Naam Simple Page Screenshot Simple Page Screenshot
ID llhehkgnfcfjbpknaljplknmimhggbpa
Officiële URL https://chrome.google.com/webstore/detail/simple-page-screenshot/llhehkgnfcfjbpknaljplknmimhggbpa
Beschrijving 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.
Bestandsgrootte 8.71 KB
Aantal Installaties 255
Huidige Versie 1.0.0
Laatst Bijgewerkt 2014-04-04
Publicatiedatum 2014-04-04
Beoordeling 1.00/5 Totaal 1 Beoordelingen
Ontwikkelaar paradoxxxzero
Betalingswijze free
Extensiewebsite https://github.com/paradoxxxzero/simple_page_screenshot
Ondersteunde Talen 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",
        ""
    ]
}