Screen Capture and download

Capture current page and download the image.

Wat is Screen Capture and download?

Screen Capture and download is een Chrome-extensie ontwikkeld door extensioncreatorsllc, en de belangrijkste functie is "Capture current page and download the image.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Screen Capture and download

Download Screen Capture and download-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

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

Basisinformatie over de Extensie

Naam Screen Capture and download Screen Capture and download
ID gdnehbhmjdcdinmninaodlclfphjkplk
Officiële URL https://chrome.google.com/webstore/detail/screen-capture-and-downlo/gdnehbhmjdcdinmninaodlclfphjkplk
Beschrijving Capture current page and download the image.
Bestandsgrootte 157 KB
Aantal Installaties 6,726
Huidige Versie 1.5
Laatst Bijgewerkt 2019-08-27
Publicatiedatum 2019-08-27
Beoordeling 4.52/5 Totaal 25 Beoordelingen
Ontwikkelaar extensioncreatorsllc
Betalingswijze free
URL van de Privacybeleid Pagina https://bornsecret.com/privacy.html
Ondersteunde Talen 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
}