YouTube Zoomer

Easily zoom on YouTube videos, with a simple scroll

YouTube Zoomerคืออะไร?

YouTube Zoomer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย teyzer18 และคุณลักษณะหลักของมันคือ "Easily zoom on YouTube videos, with a simple scroll"

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

screenshot
screenshot
screenshot

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

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

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

                        With this extension, you can easily zoom on YouTube videos. It can be useful to seek for something particular in a video, something you have some difficulties to see, or to resize the format of the theater mode.                    

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

ชื่อ YouTube Zoomer YouTube Zoomer
ID bgdkkdnidmmakdgebkgaeijbfkhieejn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-zoomer/bgdkkdnidmmakdgebkgaeijbfkhieejn
คำอธิบาย Easily zoom on YouTube videos, with a simple scroll
ขนาดไฟล์ 13.8 KB
จำนวนการติดตั้ง 1,623
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2020-08-23
วันที่เผยแพร่ 2020-08-23
คะแนน 3.05/5 รวมทั้งหมด 20 คะแนน
ผู้พัฒนา teyzer18
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.0",
    "name": "YouTube Zoomer",
    "description": "Easily zoom on YouTube videos, with a simple scroll",
    "background": {
        "persistent": false,
        "scripts": [
            "background\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content\/injection.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup\/popup.html",
        "default_icon": "icons\/icon.png"
    },
    "permissions": [
        "storage",
        "activeTab",
        "*:\/\/*.youtube.com\/*",
        "background"
    ]
}