make the web page look dark using this dark mode
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "prime dark",
"version": "0.1",
"action": {
"default_icon": "icon.png"
},
"description": "make the web page look dark using this dark mode",
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"jquery.js",
"content.js"
],
"run_at": "document_end"
}
],
"icons": {
"128": "icon.png"
},
"permissions": [
"storage",
"tabs"
]
}