PiPPY - Native picture in picture
Native Google Chrome extension for picture in picture mode. Supports Youtube, Twitch, Mixer, Facebook and many other platforms.
PiPPY - Native picture in picture क्या है?
PiPPY - Native picture in picture http://jaska.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Native Google Chrome extension for picture in picture mode. Supports Youtube, Twitch, Mixer, Facebook and many other platforms."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में PiPPY - Native picture in picture एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
As of January 2019 Google released their own extension for same exact purpose so I recommend switching to it https://chrome.google.com/webstore/detail/picture-in-picture-extens/hkgfoiooedgoejojocmhlaklaeopbecg/ ----------------------------------------------- Picture in picture mode can be forced with this extension even if website doesn't support it. Ways to use extension Click the extension icon whenever any kind of video is present on the current page. * Right click on the video and click "Force picture in picture mode" * `Alt + shift + s` on Windows or `Cmd+Shift+S`on Mac whenever video is present on the page * Click PiPPY icon which is embedded in supported players(current only Twitch.tv) Extension uses icons which are provided by https://icons8.com
एक्सटेंशन की मूल जानकारी
नाम | |
ID | kienbfjdgnamgohflfagoplkpkkcnohj |
आधिकारिक URL | https://chrome.google.com/webstore/detail/pippy-native-picture-in-p/kienbfjdgnamgohflfagoplkpkkcnohj |
विवरण | Native Google Chrome extension for picture in picture mode. Supports Youtube, Twitch, Mixer, Facebook and many other platforms. |
फ़ाइल का आकार | 10.92 KB |
स्थापना संख्या | 18,992 |
वर्तमान संस्करण | 0.14 |
अंतिम अपडेट | 2019-03-23 |
प्रकाशन तिथि | 2019-03-23 |
रेटिंग | 4.72/5 कुल 36 रेटिंग्स |
डेवलपर | http://jaska.dev |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/Jasius/PiPPY/ |
सहायता पृष्ठ URL | https://github.com/Jasius/PiPPY/blob/master/README.MD |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "PiPPY - Native picture in picture", "short_name": "PiPPY", "description": "Native Google Chrome extension for picture in picture mode. Supports Youtube, Twitch, Mixer, Facebook and many other platforms.", "homepage_url": "http:\/\/pippy.jaska.co", "offline_enabled": true, "version": "0.14", "manifest_version": 2, "background": { "scripts": [ "background.js" ], "persistent": true }, "icons": { "128": "assets\/PiPPY-128.png" }, "browser_action": { "default_icon": { "16": "assets\/PiPPY-16.png", "48": "assets\/PiPPY-48.png", "128": "assets\/PiPPY-128.png" }, "default_title": "PiPPY" }, "commands": { "shortcut_test": { "suggested_key": { "default": "Alt+Shift+S", "windows": "Alt+Shift+S", "mac": "Alt+Shift+S", "chromeos": "Alt+Shift+S", "linux": "Alt+Shift+S" }, "description": "Force picture in picture" } }, "web_accessible_resources": [ "assets\/PiPPY-Twitch.png" ], "content_scripts": [ { "matches": [ "*:\/\/*.twitch.tv\/*" ], "exclude_matches": [ "*:\/\/*.twitch.tv\/directory\/*", "*:\/\/*.twitch.tv\/" ], "js": [ "twitch\/background.js" ], "css": [ "twitch\/style.css" ], "all_frames": true, "run_at": "document_end" } ], "permissions": [ "contextMenus", "activeTab", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ] } |