Inspect and view changes in Apollolytics 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": 3,
"name": "Apollolytics",
"version": "1.8",
"description": "Automated propaganda detection in the browser",
"icons": {
"48": "icons/apollolytics_48x48.png"
},
"action": {
"default_icon": {
"16": "icons/apollolytics_16x16.png",
"32": "icons/apollolytics_32x32.png"
},
"default_title": "Apollolytics",
"default_popup": "/main.html"
},
"permissions": [
"storage",
"contextMenus",
"activeTab",
"scripting"
],
"background": {
"service_worker": "background.js",
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"apollolytics-strings.js",
"scripts/modules/utils.js",
"scripts/modules/text-matching.js",
"scripts/modules/ui.js",
"scripts/modules/content-extraction.js",
"scripts/modules/propaganda-detection.js",
"apollolytics.js"
]
}
],
"host_permissions": [
"<all_urls>"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
},
"browser_specific_settings": {
"gecko": {
"id": "contact@apollolytics.com"
}
},
"web_accessible_resources": [
{
"resources": [
"scripts/tooltip.js",
"icons/apollolytics_base.png"
],
"matches": [
"<all_urls>"
]
}
]
}