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.

Co to jest Simple Page Screenshot?

Simple Page Screenshot to rozszerzenie Chrome opracowane przez paradoxxxzero, a jego główną funkcją jest „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.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Simple Page Screenshot

Pobierz pliki rozszerzeń Simple Page Screenshot w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Simple Page Screenshot Simple Page Screenshot
ID llhehkgnfcfjbpknaljplknmimhggbpa
Oficjalny URL https://chrome.google.com/webstore/detail/simple-page-screenshot/llhehkgnfcfjbpknaljplknmimhggbpa
Opis 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.
Rozmiar pliku 8.71 KB
Liczba instalacji 255
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2014-04-04
Data Publikacji 2014-04-04
Ocena 1.00/5 Łącznie 1 Oceny
Deweloper paradoxxxzero
Typ Płatności free
Strona Rozszerzenia https://github.com/paradoxxxzero/simple_page_screenshot
Obsługiwane Języki 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",
        ""
    ]
}