Inspect and view changes in Duckduckgo auto themer 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,
"version": "0.4.0",
"name": "Duckduckgo auto themer",
"homepage_url": "https://gitlab.com/daanturo/duckduckgo-auto-themer-webextension",
"description": "Automatically configure Duckduckgo's theme based on the browser's color scheme.",
"permissions": [
"tabs",
"cookies",
"storage",
"offscreen"
],
"host_permissions": [
"*://duckduckgo.com/*"
],
"background": {
"service_worker": "dist/background.js"
},
"content_scripts": [
{
"matches": [
"*://duckduckgo.com/*"
],
"js": [
"dist/content/color_scheme_content_script.js"
]
}
],
"options_ui": {
"page": "dist/options/options.html",
"open_in_tab": true
},
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"dist/shared.js",
"images/*"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}