Inspect and view changes in Prime Video Picture In Picture 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
{
"name": "Prime Video Picture In Picture",
"description": "Extension to watch Prime Video in Picture in Picture mode. Enables a separate floating window to enjoy your favorite video content.",
"version": "1.0.19",
"manifest_version": 3,
"host_permissions": [
"*://*.primevideo.com/*",
"*://*.amazon.com/*",
"*://*.amazon.co.uk/*",
"*://*.amazon.de/*",
"*://*.amazon.co.jp/*"
],
"permissions": [
"storage"
],
"action": {
"default_icon": "img/48X48_PrimeVideo.png"
},
"content_scripts": [
{
"js": [
"amazon.min.js",
"engine.js"
],
"css": [
"injected.css"
],
"matches": [
"*://*.primevideo.com/*",
"*://*.amazon.com/*",
"*://*.amazon.co.uk/*",
"*://*.amazon.de/*",
"*://*.amazon.co.jp/*"
]
}
],
"icons": {
"16": "img/16X16_PrimeVideo.png",
"48": "img/48X48_PrimeVideo.png",
"128": "img/128x128_PrimeVideo.png"
},
"background": {
"service_worker": "background.js"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}