Picture-in-Picture Viewer
Watch video using the Picture-in-Picture API.
Picture-in-Picture Viewerคืออะไร?
Picture-in-Picture Viewer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://thorium.rocks และคุณลักษณะหลักของมันคือ "Watch video using the Picture-in-Picture API."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Picture-in-Picture Viewer
ดาวน์โหลดไฟล์ส่วนขยาย Picture-in-Picture Viewer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
A simple Chromium Extension to enable the Picture-in-Picture Web API in Chromium.
It is a fork of https://chrome.google.com/webstore/detail/picture-in-picture-extens/hkgfoiooedgoejojocmhlaklaeopbecg with some fixes, and removed Google Analytics tracking.
- Alex313031 ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | kgfcmiijchdkbknmjnojfngnapkibkdh |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/picture-in-picture-viewer/kgfcmiijchdkbknmjnojfngnapkibkdh |
| คำอธิบาย | Watch video using the Picture-in-Picture API. |
| ขนาดไฟล์ | 11.12 KB |
| จำนวนการติดตั้ง | 2,028 |
| เวอร์ชันปัจจุบัน | 1.12.2 |
| อัปเดตครั้งล่าสุด | 2023-09-02 |
| วันที่เผยแพร่ | 2023-04-26 |
| คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
| ผู้พัฒนา | https://thorium.rocks |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://github.com/Alex313031/picture-in-picture-viewer |
| URL หน้าช่วยเหลือ | https://github.com/Alex313031/picture-in-picture-viewer/issues |
| URL หน้านโยบายความเป็นส่วนตัว | https://thorium.rocks/COC.html |
| ภาษาที่รองรับ | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Picture-in-Picture Viewer",
"short_name": "PiP Viewer",
"author": "Alex313031",
"description": "Watch video using the Picture-in-Picture API.",
"homepage_url": "https:\/\/github.com\/Alex313031\/picture-in-picture-viewer",
"manifest_version": 3,
"minimum_chrome_version": "88",
"offline_enabled": true,
"version": "1.12.2",
"version_name": "1.12.2",
"icons": {
"16": "assets\/icon16.png",
"24": "assets\/icon24.png",
"32": "assets\/icon32.png",
"48": "assets\/icon48.png",
"64": "assets\/icon64.png",
"128": "assets\/icon128.png",
"256": "assets\/icon256.png"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": {
"19": "assets\/icon19.png",
"38": "assets\/icon38.png"
}
},
"commands": {
"_execute_action": {
"suggested_key": {
"windows": "Alt+P",
"mac": "Alt+P",
"chromeos": "Alt+P",
"linux": "Alt+P"
}
}
},
"permissions": [
"scripting"
],
"host_permissions": [
" | |