Inspect and view changes in Crunchyroll: 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": "Crunchyroll: Picture in Picture",
"description": "Extension to watch Crunchyroll in Picture in Picture mode. Enables a separate floating window to enjoy your favorite video content.",
"version": "1.0.1",
"manifest_version": 3,
"permissions": [],
"host_permissions": [
"*://*.crunchyroll.com/*"
],
"action": {
"default_icon": "img/48pipCrunchyroll.png"
},
"content_scripts": [
{
"js": [
"content.js"
],
"css": [
"injected.css"
],
"matches": [
"*://*.crunchyroll.com/*"
],
"match_origin_as_fallback": true,
"all_frames": true
}
],
"icons": {
"48": "img/48pipCrunchyroll.png",
"128": "img/128pipCrunchyroll.png"
},
"background": {
"service_worker": "background.js"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}