Simulates high contrast mode.
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": 2,
"name": "__MSG_AppName__",
"description": "__MSG_AppDesc__",
"default_locale": "en",
"version": "1",
"browser_action": {
"browser_style": true,
"default_title": "High Contrast Simulator",
"default_icon": {
"48": "icons/baseline_brightness_low_black_48dp.png"
},
"default_popup": "popup.html"
},
"background": {
"scripts": [
"js/update-conf.js",
"js/update.js"
]
},
"icons": {
"48": "icons/baseline_brightness_low_black_48dp.png"
},
"permissions": [
"activeTab"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}