Printscreen YouTube

Take a printscreen of any YouTube video.

什麼是Printscreen YouTube?

Printscreen YouTube是由https://limbuscode.com開發的Chrome擴展程式,該擴展的主要功能是“Take a printscreen of any YouTube video.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Printscreen YouTube擴展crx文件

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

擴展使用說明

                        It places a button called "Printscreen" on the Youtube player which saves a screenshot of the currently playing video as a file or copies it to the clipboard.

Get a Preview of the printscreen image that you took.

Go to chrome://extensions/shortcuts to customize screenshot keyboard shortcut (Default is: Alt+S)

Choose which format the file will be: PNG, JPG, or WEBP. (Default is: PNG)

Consider supporting on buymeacoffee: https://bit.ly/limbuscode-buymeacoffee

Changelog;

v0.0.1:

- First version                    

擴展基本資訊

名稱 Printscreen YouTube Printscreen YouTube
ID ledkfpmgmimfleobfeepelhihghneckg
官方網址 https://chromewebstore.google.com/detail/printscreen-youtube/ledkfpmgmimfleobfeepelhihghneckg
簡介 Take a printscreen of any YouTube video.
檔案大小 34.16 KB
安裝次數 49
目前版本 0.0.1
更新時間 2024-01-05
上架時間 2022-10-25
評分 5.00/5 共 1 次評分
開發者 https://limbuscode.com
電子郵箱 [email protected]
付費類型 free
說明頁面URL https://docs.google.com/forms/d/e/1FAIpQLSd_7IU5Rie2lqsxNA7TunGaSlgbmZOcORmtzrtR5fsiju07JQ/viewform?usp=pp_url&entry.937029896=Printscreen+YouTube
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Printscreen YouTube",
    "version": "0.0.1",
    "description": "Take a printscreen of any YouTube video.",
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "page.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "commands": {
        "ss": {
            "suggested_key": "Alt+S",
            "description": "Screenshot"
        }
    },
    "permissions": [
        "webNavigation",
        "storage",
        "scripting",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/*"
    ],
    "icons": {
        "16": "assets\/img\/16.png",
        "24": "assets\/img\/24.png",
        "32": "assets\/img\/32.png",
        "48": "assets\/img\/48.png",
        "64": "assets\/img\/64.png",
        "128": "assets\/img\/128.png"
    }
}