YouTube Screenshot

Save Take screenshots from YouTube video

YouTube Screenshotคืออะไร?

YouTube Screenshot เป็นส่วนขยายของ Chrome ที่พัฒนาโดย info และคุณลักษณะหลักของมันคือ "Save Take screenshots from YouTube video"

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย YouTube Screenshot ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        A small add-on to take screenshots of YouTube videos with one click.
- This add-on is completely free to use.
- This add-on adds an extra button in the YouTube player to take a screenshot of the video.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ YouTube Screenshot YouTube Screenshot
ID mdblbmmnmgoglgggphofecocdniamacg
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/youtube-screenshot/mdblbmmnmgoglgggphofecocdniamacg
คำอธิบาย Save Take screenshots from YouTube video
ขนาดไฟล์ 164 KB
จำนวนการติดตั้ง 230
เวอร์ชันปัจจุบัน 2.0.0
อัปเดตครั้งล่าสุด 2022-12-05
วันที่เผยแพร่ 2022-12-05
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา info
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Screenshot",
    "description": "Save Take screenshots from YouTube video",
    "manifest_version": 3,
    "version": "2.0.0",
    "background": {
        "service_worker": "worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "alarms",
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "options_ui": {
        "page": "options\/index.html"
    },
    "icons": {
        "128": "icons\/icon.png"
    }
}