Screenshot YouTube

Take a screenshot of any YouTube video with one click.

什麼是Screenshot YouTube?

Screenshot YouTube是由Zdeněk Gromnica | FutureMillennium開發的Chrome擴展程式,該擴展的主要功能是“Take a screenshot of any YouTube video with one click.”。

擴展截圖

screenshot
screenshot

下載Screenshot YouTube擴展crx文件

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

擴展使用說明

                        Adds a “Screenshot” button to the YouTube video player which saves a screenshot of the currently playing video as a file, or copies it to the clipboard, or both.

Optionally with keyboard shortcuts, and buttons for changing the playback rate.

This extension does not contain any malicious or tracking code. No viruses. No ads. Only good software.

Thanks to Ari Velazquez, and Zertsu for their contributions.

Consider supporting on Patreon: https://www.patreon.com/FutureMillennium

Open source at https://github.com/FutureMillennium/Screenshot-YouTube                    

擴展基本資訊

名稱 Screenshot YouTube Screenshot YouTube
ID gjoijpfmdhbjkkgnmahganhoinjjpohk
官方網址 https://chromewebstore.google.com/detail/screenshot-youtube/gjoijpfmdhbjkkgnmahganhoinjjpohk
簡介 Take a screenshot of any YouTube video with one click.
檔案大小 16.15 KB
安裝次數 446,521
目前版本 2.4.1
更新時間 2021-12-20
上架時間 2020-02-04
評分 4.45/5 共 366 次評分
開發者 Zdeněk Gromnica | FutureMillennium
電子郵箱 [email protected]
付費類型 free
擴展官網 https://www.patreon.com/FutureMillennium
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Screenshot YouTube",
    "version": "2.4.1",
    "description": "Take a screenshot of any YouTube video with one click.",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "page.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/www.youtube.com\/*",
        "webNavigation",
        "storage"
    ]
}