Printscreen YouTube

Take a printscreen of any YouTube video.

Printscreen YouTubeคืออะไร?

Printscreen YouTube เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://limbuscode.com และคุณลักษณะหลักของมันคือ "Take a printscreen of any YouTube video."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Printscreen YouTube

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
    }
}