StreamShot: Screenshot for Youtube and Twitch

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

什麼是StreamShot: Screenshot for Youtube and Twitch?

StreamShot: Screenshot for Youtube and Twitch是由ECALL TECHNOLOGIES開發的Chrome擴展程式,該擴展的主要功能是“Take screenshots from any videos & live streams. Works with Youtube & Twitch.”。

擴展截圖

screenshot

下載StreamShot: Screenshot for Youtube and Twitch擴展crx文件

下載StreamShot: Screenshot for Youtube and Twitch擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 StreamShot: Screenshot for Youtube and Twitch StreamShot: Screenshot for Youtube and Twitch
ID dkgbndlihekhmkfpjaeffcolebphngli
官方網址 https://chromewebstore.google.com/detail/streamshot-screenshot-for/dkgbndlihekhmkfpjaeffcolebphngli
簡介 Take screenshots from any videos & live streams. Works with Youtube & Twitch.
檔案大小 286 KB
安裝次數 1,445
目前版本 0.0.6
更新時間 2023-03-02
上架時間 2021-01-03
評分 4.44/5 共 9 次評分
開發者 ECALL TECHNOLOGIES
電子郵箱 [email protected]
付費類型 free
擴展官網 http://ecall.tech
隱私政策頁面URL https://cbs.ecall.tech/privacy-policy
支援的語言 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\/*"
    ]
}