Screenshotting Master - Full Page Capture

Use Screenshotting Master - Full Page Capture for a simple one click

¿Qué es Screenshotting Master - Full Page Capture?

Screenshotting Master - Full Page Capture es una extensión de Chrome desarrollada por kevinlawson746, y su función principal es "Use Screenshotting Master - Full Page Capture for a simple one click".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Screenshotting Master - Full Page Capture

Descarga archivos de extensión Screenshotting Master - Full Page Capture en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        A Simple and easy Screenshotting extension to capture screenshots from any web page. Now you can take screenshots in three different ways using this Free Extension.

Features: 
☆ Full page Screenshot - Capture the entire page without the hassle of scrolling through the page.
☆ Selected Area Screenshot - Capture a selective area of the visible screen.
☆ Visible Area Screenshot - Capture only the currently visible screen.

Shortcut Keys: 
Alt + P - Full Page Screenshot
Alt + L - Selected Area Screenshot
Alt + V - Visible Area Screenshot

Highlights: 
★All in one Screenshotting Extension.
★Lightweight compared to other screenshotting extensions.
★Free to use.🙂

updates:
0.0.3 - minor update                    

Información Básica de la Extensión

Nombre Screenshotting Master - Full Page Capture Screenshotting Master - Full Page Capture
ID aiaplgbkhiadmidofbfgcemildehlnen
URL Oficial https://chrome.google.com/webstore/detail/screenshotting-master-ful/aiaplgbkhiadmidofbfgcemildehlnen
Descripción Use Screenshotting Master - Full Page Capture for a simple one click
Tamaño del Archivo 368 KB
Cantidad de Instalaciones 2,000
Versión Actual 0.0.4
Última Actualización 2022-07-24
Fecha de Publicación 2022-04-13
Calificación 3.63/5 Total de 8 Calificaciones
Desarrollador kevinlawson746
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Screenshotting Master - Full Page Capture",
    "version": "0.0.4",
    "description": "Use Screenshotting Master - Full Page Capture for a simple one click",
    "permissions": [
        "tabs",
        "storage",
        "unlimitedStorage",
        "downloads",
        "scripting"
    ],
    "action": {
        "default_icon": "icon128.png",
        "default_title": "Screenshot",
        "default_popup": "index.html"
    },
    "background": {
        "service_worker": "b.js"
    },
    "icons": {
        "128": "icon128.png"
    },
    "host_permissions": [
        ""
    ],
    "commands": {
        "fullPage": {
            "suggested_key": {
                "default": "Alt+P"
            },
            "description": "Take fullpage screenshot"
        },
        "visibleArea": {
            "suggested_key": {
                "default": "Alt+V"
            },
            "description": "Visible page screenshot"
        },
        "selectedArea": {
            "suggested_key": {
                "default": "Alt+L"
            },
            "description": "Selected Area screenshot"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "innerScreenshotContent.js",
                "screenshot.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "manifest_version": 3,
    "web_accessible_resources": []
}