Download thumbnail images of youtube videos
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "YT Thumbnail Downloader",
"description": "Download thumbnail images of youtube videos",
"update_url": "http://clients2.google.com/service/update2/crx",
"version": "3.5.4",
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"browser_action": {
"name": "YT Thumbnail Downloader",
"default_popup": "popup.html",
"default_icon": {
"128": "img/128.png"
}
},
"content_scripts": [
{
"matches": [
"https://www.youtube.com/*"
],
"js": [
"jquery.js",
"download.js"
],
"run_at": "document_end"
}
],
"icons": {
"16": "img/16.png",
"32": "img/32.png",
"48": "img/48.png",
"128": "img/128.png"
},
"web_accessible_resources": [
"*.png",
"*.PNG",
"*.JPG"
],
"permissions": [
"*://*.youtube.com/*"
],
"manifest_version": 2
}