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 nadirlaskar द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allow you to create a Picture In Picture for any tabs using streaming as PIP video"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Picture In Picture Tab एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } |