Invert colors of webpages and web documents
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": "Invert Any Web",
"version": "1.0",
"description": "Invert colors of webpages and web documents",
"permissions": [
"storage",
"activeTab",
"scripting"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": "icon.png"
},
"host_permissions": [
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}