Screen Capture and download

Capture current page and download the image.

Co to jest Screen Capture and download?

Screen Capture and download to rozszerzenie Chrome opracowane przez extensioncreatorsllc, a jego główną funkcją jest „Capture current page and download the image.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Screen Capture and download

Pobierz pliki rozszerzeń Screen Capture and download 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

                        This chrome extension allows user to take the screen shot of current page in chrome and download it as a image.                    

Podstawowe informacje o rozszerzeniu

Nazwa Screen Capture and download Screen Capture and download
ID gdnehbhmjdcdinmninaodlclfphjkplk
Oficjalny URL https://chrome.google.com/webstore/detail/screen-capture-and-downlo/gdnehbhmjdcdinmninaodlclfphjkplk
Opis Capture current page and download the image.
Rozmiar pliku 157 KB
Liczba instalacji 6,726
Aktualna Wersja 1.5
Ostatnia Aktualizacja 2019-08-27
Data Publikacji 2019-08-27
Ocena 4.52/5 Łącznie 25 Oceny
Deweloper extensioncreatorsllc
Typ Płatności free
Adres URL Strony Polityki Prywatności https://bornsecret.com/privacy.html
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Screen Capture and download",
    "version": "1.5",
    "description": "Capture current page and download the image.",
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content1.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Capture screen and download!",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icon128.png",
        "16": "icon.png",
        "32": "icon32.png",
        "48": "icon48.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+P"
            }
        }
    },
    "permissions": [
        "activeTab",
        "downloads",
        ""
    ],
    "manifest_version": 2
}