Inspect and view changes in Invert Color Extension 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,
"name": "Invert Color Extension",
"version": "1.0",
"description": "Inverts colors on Ctrl + I",
"permissions": [
"scripting",
"activeTab"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+I"
},
"description": "Invert colors on the current page with Ctrl + i"
}
},
"action": {},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}