Screen Capture and download

Capture current page and download the image.

Τι είναι το Screen Capture and download;

Το Screen Capture and download είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον extensioncreatorsllc, και η κύρια λειτουργία του είναι "Capture current page and download the image.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Screen Capture and download

Λήψη αρχείων επέκτασης Screen Capture and download σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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

Βασικές Πληροφορίες Επέκτασης

Όνομα Screen Capture and download Screen Capture and download
ID gdnehbhmjdcdinmninaodlclfphjkplk
Επίσημο URL https://chrome.google.com/webstore/detail/screen-capture-and-downlo/gdnehbhmjdcdinmninaodlclfphjkplk
Περιγραφή Capture current page and download the image.
Μέγεθος Αρχείου 157 KB
Αριθμός Εγκαταστάσεων 6,726
Τρέχουσα Έκδοση 1.5
Τελευταία Ενημέρωση 2019-08-27
Ημερομηνία Δημοσίευσης 2019-08-27
Αξιολόγηση 4.52/5 Συνολικά 25 Αξιολογήσεις
Προγραμματιστής extensioncreatorsllc
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://bornsecret.com/privacy.html
Υποστηριζόμενες Γλώσσες 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
}