Inspect and view changes in Youtube Subtitle 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": "Youtube Subtitle Downloader",
"version": "3.4.1",
"description": "Download subtitle (Closed Caption) from YouTube",
"icons": {
"48": "images/download-64.png"
},
"content_scripts": [
{
"matches": [
"*://*.youtube.com/*"
],
"all_frames": false,
"js": [
"js/content.js"
]
}
],
"web_accessible_resources": [
"js/common.js",
"js/gui.js",
"js/timed-to-srt-converter.js",
"js/youtube-subtitle-downloader.js"
],
"browser_specific_settings": {
"gecko": {
"id": "youtube-subtitle-downloader@mozilla.org"
}
}
}