Screen Capture and download

Capture current page and download the image.

Was ist Screen Capture and download?

Screen Capture and download ist eine Chrome-Erweiterung, die von extensioncreatorsllc entwickelt wurde, und ihr Hauptmerkmal ist "Capture current page and download the image.".

Erweiterungsscreenshots

screenshot

Screen Capture and download-Erweiterungs-CRX-Datei herunterladen

Laden Sie Screen Capture and download-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Screen Capture and download Screen Capture and download
ID gdnehbhmjdcdinmninaodlclfphjkplk
Offizielle URL https://chrome.google.com/webstore/detail/screen-capture-and-downlo/gdnehbhmjdcdinmninaodlclfphjkplk
Beschreibung Capture current page and download the image.
Dateigröße 157 KB
Installationsanzahl 6,726
Aktuelle Version 1.5
Letztes Update 2019-08-27
Veröffentlichungsdatum 2019-08-27
Bewertung 4.52/5 Insgesamt 25 Bewertungen
Entwickler extensioncreatorsllc
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://bornsecret.com/privacy.html
Unterstützte Sprachen 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
}