Inspect and view changes in YT/IG/TW 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": "YT/IG/TW Downloader",
"version": "1.0",
"description": "Allows user to download Youtube videos in MP3, MP4 format, download Instagram pictures and stories, download Twitter videos and GIFS",
"content_scripts": [
{
"matches": [
"*://*.youtube.com/*"
],
"js": [
"youtube.js"
]
},
{
"matches": [
"*://*.instagram.com/*"
],
"js": [
"instagram.js"
]
},
{
"matches": [
"*://twitter.com/*"
],
"js": [
"twitter.js"
]
}
],
"permissions": [
"<all_urls>"
],
"browser_specific_settings": {
"gecko": {
"id": "{248ea5ba-0975-407b-8252-6c2a02ebec36}"
}
}
}