StreamShot: Screenshot for Youtube and Twitch

Take screenshots from any videos & live streams. Works with Youtube & Twitch.

¿Qué es StreamShot: Screenshot for Youtube and Twitch?

StreamShot: Screenshot for Youtube and Twitch es una extensión de Chrome desarrollada por ECALL TECHNOLOGIES, y su función principal es "Take screenshots from any videos & live streams. Works with Youtube & Twitch.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión StreamShot: Screenshot for Youtube and Twitch

Descarga archivos de extensión StreamShot: Screenshot for Youtube and Twitch 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

                        In no time, capture your favorite moments from any video or live stream on the web.

We all love to take screnshots. However, it can be painful process, especially when you dont have the right sofware installed and ready-to-use.

StreamShot is the fastest way to take a screenshot from a video or a live stream.

For now, StreamShot works on Twitch and Youtube only #FirstRelease.

Upcoming features:
Keyboard shortcuts

Feel free to share your ideas: [email protected]

Enjoy!

Changelog:
- March 01, 2023: Performance optimization and migration to Google latest requirements (v3)
- June 07, 2022: Fixed the issue with Youtube Studio Dashboard thanks to users' feedback
- February 24, 2021: Twitch vods / recorded videos are now supported.                    

Información Básica de la Extensión

Nombre StreamShot: Screenshot for Youtube and Twitch StreamShot: Screenshot for Youtube and Twitch
ID dkgbndlihekhmkfpjaeffcolebphngli
URL Oficial https://chromewebstore.google.com/detail/streamshot-screenshot-for/dkgbndlihekhmkfpjaeffcolebphngli
Descripción Take screenshots from any videos & live streams. Works with Youtube & Twitch.
Tamaño del Archivo 286 KB
Cantidad de Instalaciones 1,445
Versión Actual 0.0.6
Última Actualización 2023-03-02
Fecha de Publicación 2021-01-03
Calificación 4.44/5 Total de 9 Calificaciones
Desarrollador ECALL TECHNOLOGIES
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión http://ecall.tech
URL de la Página de Política de Privacidad https://cbs.ecall.tech/privacy-policy
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Take screenshots from any videos & live streams. Works with Youtube & Twitch.",
    "version": "0.0.6",
    "name": "StreamShot: Screenshot for Youtube and Twitch",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-128.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*",
                "*:\/\/*.twitch.tv\/*"
            ],
            "exclude_matches": [
                "*:\/\/studio.youtube.com\/*"
            ],
            "js": [
                "jquery-3.5.1.min.js",
                "FileSaver.min.js",
                "html2canvas.min.js",
                "contentScript.bundle.js"
            ],
            "run_at": "document_end",
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "jquery-3.5.1.min.js",
                "FileSaver.min.js",
                "html2canvas.min.js",
                "content.styles.css",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*",
                "*:\/\/*.twitch.tv\/*"
            ],
            "exclude_matches": [
                "*:\/\/studio.youtube.com\/*"
            ]
        }
    ],
    "devtools_page": "devtools.html",
    "permissions": [],
    "host_permissions": [
        "*:\/\/*.youtube.com\/*",
        "*:\/\/*.twitch.tv\/*"
    ]
}