Inspect and view changes in Youtube thumbnail 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": 2,
"name": "Hero Thumb Downloader",
"description": "This extension extract YT thumbnail and open in new tab",
"version": "1.0",
"action": {
"default_icon": "icon.png"
},
"permissions": [
"activeTab"
],
"content_scripts": [
{
"matches": [
"https://www.youtube.com/*"
],
"js": [
"contentScript.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{f5990902-347d-4591-9826-0f536fec3c9e}"
}
}
}