Screen Capture and download

Capture current page and download the image.

Qu'est-ce que Screen Capture and download ?

Screen Capture and download est une extension Chrome développée par extensioncreatorsllc, et sa fonction principale est "Capture current page and download the image.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Screen Capture and download

Téléchargez les fichiers d'extension Screen Capture and download au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Screen Capture and download Screen Capture and download
ID gdnehbhmjdcdinmninaodlclfphjkplk
URL Officiel https://chrome.google.com/webstore/detail/screen-capture-and-downlo/gdnehbhmjdcdinmninaodlclfphjkplk
Description Capture current page and download the image.
Taille du Fichier 157 KB
Nombre d'Installations 6,726
Version Actuelle 1.5
Dernière Mise à Jour 2019-08-27
Date de Publication 2019-08-27
Évaluation 4.52/5 Total 25 Évaluations
Développeur extensioncreatorsllc
Type de Paiement free
URL de la Page de Politique de Confidentialité https://bornsecret.com/privacy.html
Langues Prises en Charge 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
}