Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "PiP for YouTube\u2122 \u2014 Floating Mini Player",
"version": "1.1.1",
"description": "One-click Picture-in-Picture for YouTube & Shorts. Toggle from the toolbar or in-player button. Private, fast, no bloat.",
"permissions": [
"activeTab",
"scripting"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Toggle PiP (yt-pip)",
"default_icon": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*",
"https:\/\/m.youtube.com\/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_idle"
}
]
}