chrome_darkmode/manifest.json

19 lines
407 B
JSON

{
"manifest_version": 2,
"name": "Auto Dark Mode Toggle",
"version": "1.0",
"description": "Toggle the 'Auto Dark Mode for Web Contents' flag in Chrome://flags",
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"background": {
"scripts": ["background.js"],
"persistent": false
},
"permissions": [
"tabs"
]
}