Inspect and view changes in Open in UDM (uGet Download Manager) 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
{
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"browser_style": true,
"default_icon": "icon_32.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"all_frames": true,
"js": [
"content.js",
"extract.js"
],
"matches": [
"http://*/*",
"https://*/*"
],
"run_at": "document_start"
}
],
"description": "Open in uGet Download Manager extension replaces default download manager by uGet Download Manager.",
"icons": {
"32": "icon_32.png",
"48": "icon_48.png",
"64": "icon_64.png",
"128": "icon_128.png"
},
"manifest_version": 2,
"minimum_chrome_version": "19.0",
"name": "Open in uGet Download Manager",
"short_name": "uGet",
"permissions": [
"<all_urls>",
"webRequest",
"webRequestBlocking",
"nativeMessaging",
"contextMenus",
"downloads",
"storage",
"cookies",
"activeTab"
],
"version": "2resigned1",
"browser_specific_settings": {
"gecko": {
"id": "{be1116e1-7480-442a-9cc0-22fd2654fed3}"
}
}
}