Picture In Picture Tab
Allow you to create a Picture In Picture for any tabs using streaming as PIP video
Picture In Picture Tabคืออะไร?
Picture In Picture Tab เป็นส่วนขยายของ Chrome ที่พัฒนาโดย nadirlaskar และคุณลักษณะหลักของมันคือ "Allow you to create a Picture In Picture for any tabs using streaming as PIP video"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Picture In Picture Tab
ดาวน์โหลดไฟล์ส่วนขยาย Picture In Picture Tab ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Pin any chrome tab or screen using Picture-in-Picture Mode. "Picture In Picture Tab" allows you to pin a tab in a floating window (always on top of other windows) so you can keep an eye on what you’re doing on other tabs while interacting with other sites, or applications. Keyboard shortcut: Alt + Shift + P (⌥ + Shift + P on macOS). You can also use the Browser Action Icon to toggle the tabs to pin or unpin as PIP. Enjoy!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | bgopgnbpejocbnogmnjlbdalcgncbebc |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/picture-in-picture-tab/bgopgnbpejocbnogmnjlbdalcgncbebc |
คำอธิบาย | Allow you to create a Picture In Picture for any tabs using streaming as PIP video |
ขนาดไฟล์ | 44.67 KB |
จำนวนการติดตั้ง | 536 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2020-05-21 |
วันที่เผยแพร่ | 2020-05-21 |
คะแนน | 2.20/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | nadirlaskar |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้าช่วยเหลือ | https://twitter.com/nadirlaskar |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Picture In Picture Tab", "version": "1.0", "description": "Allow you to create a Picture In Picture for any tabs using streaming as PIP video", "manifest_version": 2, "permissions": [], "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+Shift+P", "mac": "Alt+Shift+P" }, "description": "pipTab" } }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "RecordRTC.js", "playerScript.js" ] } ], "browser_action": [], "icons": { "16": "images\/16.png", "32": "images\/32.png", "48": "images\/48.png", "128": "images\/128.png" }, "minimum_chrome_version": "69.0.3483.0" } |