Snapshoter - Take video snapshots

Dead simple extension for taking HTML5 video snapshots

什么是Snapshoter - Take video snapshots?

Snapshoter - Take video snapshots是由WildSeeder开发的Chrome扩展程序,该扩展的主要功能是“Dead simple extension for taking HTML5 video snapshots”。

扩展截图

screenshot
screenshot

下载Snapshoter - Take video snapshots扩展crx文件

下载Snapshoter - Take video snapshots扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Snapshoter - Take video snapshots Snapshoter - Take video snapshots
ID mipjmapcmcampplhheoaaedaibdojgdj
官方URL https://chromewebstore.google.com/detail/snapshoter-take-video-sna/mipjmapcmcampplhheoaaedaibdojgdj
简介 Dead simple extension for taking HTML5 video snapshots
文件大小 25.98 KB
安装次数 1,005
当前版本 1.1.1
更新时间 2021-11-21
上架时间 2020-01-04
评分 4.57/5 共7次评分
开发者 WildSeeder
电子邮箱 [email protected]
付费类型 free
支持的语言 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
}