Inspect and view changes in Picture-in-Picture With Playback controls source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "Picture-in-Picture With Playback controls ",
"version": "2.0.0",
"description": "Activate the extension to watch videos in a popup, adjust volume, switch, enlarge, or mute easily. ",
"action": {
"default_title": "Picture-in-Picture-With Playback controls ",
"default_icon": {
"32": "Icon 32.png",
"64": "Icon 48.png",
"128": "Icon 128.png"
}
},
"icons": {
"64": "Icon 64.png",
"128": "Icon 128.png",
"2000": "Icon 2000.png"
},
"host_permissions": [
"*://*/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_end"
}
],
"permissions": [
"storage",
"notifications",
"scripting"
],
"web_accessible_resources": [
{
"resources": [
"pause.png",
"mute.png",
"next.png",
"play.png",
"unmute.png"
],
"matches": [
"<all_urls>"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}