29 lines
No EOL
673 B
JSON
29 lines
No EOL
673 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Dark Mode Toggle",
|
|
"version": "1.0",
|
|
"description": "Toggle dark mode using inline styles without affecting fingerprinting tools.",
|
|
"permissions": [
|
|
"activeTab"
|
|
],
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
"browser_action": {
|
|
"default_icon": "icons/icon48.png",
|
|
"default_title": "Toggle Dark Mode"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content.js"]
|
|
}
|
|
],
|
|
"icons": {
|
|
"16": "icons/icon16.png",
|
|
"48": "icons/icon48.png",
|
|
"96": "icons/icon96.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
}
|
|
|