Inspect and view changes in Youtube™ Profile Picture Downloader 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": "Youtubeâ„¢ Profile Picture Downloader",
"description": "Downloads Youtubeâ„¢ Profile Picture For You",
"version": "1.2",
"author": "Tony Stark",
"homepage_url": "https://www.programmerhat.com/",
"content_scripts": [
{
"matches": [
"*://*.youtube.com/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"permissions": [
"https://yt3.ggpht.com/*"
],
"icons": {
"16": "assets/icon16.png",
"32": "assets/icon32.png",
"48": "assets/icon48.png",
"128": "assets/icon128.png"
},
"action": {
"default_title": "Youtubeâ„¢ Profile Picture Downloader",
"default_icon": "assets/icon128.png",
"default_popup": "popup.html"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}