Inspect and view changes in Youtube to Premiere pro V2 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Youtube to Premiere pro V2",
"version": "2.2.1",
"description": "",
"permissions": [
"activeTab",
"storage"
],
"host_permissions": [
"https://www.youtube.com/*"
],
"action": {
"default_icon": {
"48": "icon.png"
},
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https://www.youtube.com/*"
],
"js": [
"socket.io.min.js",
"content.js",
"script.js",
"popup.js"
],
"run_at": "document_idle"
}
],
"icons": {
"48": "icon.png"
}
}