Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"minimum_chrome_version": "100",
"version": "24.6.3",
"name": "Lett Web Dimmer",
"description": "Adjust brightness level on any website.",
"icons": {
"32": "\/assets\/icon32.png",
"128": "\/assets\/icon.png"
},
"offline_enabled": true,
"permissions": [
"storage",
"scripting"
],
"host_permissions": [
"<all_urls>"
],
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"<all_urls>"
],
"js": [
"\/js\/content.js"
]
}
],
"background": {
"service_worker": "\/js\/worker.js"
},
"action": {
"default_popup": "\/html\/control.html"
},
"commands": {
"increase": {
"suggested_key": {
"default": "Alt+W"
},
"description": "Go Darker"
},
"decrease": {
"suggested_key": {
"default": "Alt+Q"
},
"description": "Go Lighter"
}
}
}