Snapshoter - Take video snapshots

Dead simple extension for taking HTML5 video snapshots

O que é Snapshoter - Take video snapshots?

Snapshoter - Take video snapshots é uma extensão do Chrome desenvolvida por WildSeeder, e sua principal característica é "Dead simple extension for taking HTML5 video snapshots".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Snapshoter - Take video snapshots

Baixe arquivos de extensão Snapshoter - Take video snapshots no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Take video snapshots with just one click. 

Shortcuts can be set at chrome://extensions/shortcuts, support the following actions:
- Save current video snapshot to file.
- Copy current video snapshot to clipboard.                    

Informações Básicas da Extensão

Nome Snapshoter - Take video snapshots Snapshoter - Take video snapshots
ID mipjmapcmcampplhheoaaedaibdojgdj
URL Oficial https://chromewebstore.google.com/detail/snapshoter-take-video-sna/mipjmapcmcampplhheoaaedaibdojgdj
Descrição Dead simple extension for taking HTML5 video snapshots
Tamanho do Arquivo 25.98 KB
Contagem de Instalações 1,005
Versão Atual 1.1.1
Última Atualização 2021-11-21
Data de Publicação 2020-01-04
Classificação 4.57/5 Total de 7 Avaliações
Desenvolvedor WildSeeder
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "short_name": "__MSG_extensionShortName__",
    "version": "1.1.1",
    "description": "__MSG_extensionDescription__",
    "icons": {
        "16": "asset\/icon\/icon-16.png",
        "48": "asset\/icon\/icon-48.png",
        "128": "asset\/icon\/icon-128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "asset\/icon\/icon-19.png",
            "38": "asset\/icon\/icon-38.png"
        },
        "default_title": "__MSG_popupTitle__"
    },
    "permissions": [
        "tabs",
        ""
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "web_accessible_resources": [
        "*"
    ],
    "background": {
        "page": "page\/background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "script\/content.js"
            ]
        }
    ],
    "commands": {
        "takeVideoSnapshot": {
            "suggested_key": {
                "default": "Ctrl+Shift+7",
                "mac": "Command+Shift+7"
            },
            "description": "__MSG_takeVideoSnapshot__"
        },
        "copyVideoSnapshot": {
            "suggested_key": {
                "default": "Ctrl+Shift+8",
                "mac": "Command+Shift+8"
            },
            "description": "__MSG_copyVideoSnapshot__"
        }
    },
    "default_locale": "zh_CN",
    "offline_enabled": true
}