Screen Capture and download

Capture current page and download the image.

Co je Screen Capture and download?

Screen Capture and download je rozšíření Chrome vyvinuté extensioncreatorsllc, a jeho hlavní funkcí je „Capture current page and download the image.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Screen Capture and download

Stáhněte si soubory rozšíření Screen Capture and download ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Screen Capture and download Screen Capture and download
ID gdnehbhmjdcdinmninaodlclfphjkplk
Oficiální URL https://chrome.google.com/webstore/detail/screen-capture-and-downlo/gdnehbhmjdcdinmninaodlclfphjkplk
Popis Capture current page and download the image.
Velikost souboru 157 KB
Počet instalací 6,726
Aktuální Verze 1.5
Poslední Aktualizace 2019-08-27
Datum Vydání 2019-08-27
Hodnocení 4.52/5 Celkem 25 Hodnocení
Vývojář extensioncreatorsllc
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://bornsecret.com/privacy.html
Podporované Jazyky 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
}