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
公式URL 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
Eメール [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"
    ]
}