Picture-in-Picture mode allows you to watch a video in a floating window with playback video and volume controls.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "__MSG_name__",
"description": "__MSG_description__",
"default_locale": "en",
"version": "1.0.6",
"icons": {
"128": "icons/icon128.png"
},
"background": {
"service_worker": "serviceWorker.js"
},
"action": {
"default_icon": {
"16": "icons/icon16.png",
"38": "icons/icon38.png",
"48": "icons/icon48.png",
"64": "icons/icon64.png"
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"cnt.js"
],
"all_frames": true,
"run_at": "document_start"
}
],
"commands": {
"_execute_action": {
"suggested_key": {
"windows": "Alt+P",
"mac": "Alt+P",
"chromeos": "Alt+P",
"linux": "Alt+P"
}
}
},
"permissions": [
"scripting",
"storage",
"system.display"
],
"host_permissions": [
"<all_urls>"
],
"manifest_version": 3
}