Inspect and view changes in AVG Online Security 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": "__MSG_appName__",
"version": "20.3.15",
"description": "__MSG_appDesc__",
"default_locale": "en",
"author": "AVG",
"background": {
"scripts": [
"scripts/background.js"
],
"persistent": true
},
"browser_action": {
"default_icon": {
"38": "common/ui/icons/icon-avg64.png"
},
"default_title": "AVG Online Security"
},
"icons": {
"32": "common/ui/icons/icon-avg32.png",
"64": "common/ui/icons/icon-avg64.png",
"128": "common/ui/icons/icon-avg128.png"
},
"permissions": [
"https://*/*",
"http://*/*",
"storage",
"tabs",
"webNavigation",
"webRequest",
"webRequestBlocking"
],
"web_accessible_resources": [
"common/mocks/*",
"common/ui/*",
"common/ui/icons/*",
"common/ui/fonts/*",
"common/ui/css/*",
"locales/*"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"scripts/contentInject.js"
],
"run_at": "document_start"
},
{
"matches": [
"<all_urls>"
],
"js": [
"scripts/contentAdvertisers.js"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}