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,
"name": "Reddit Redux",
"version": "1.5.16",
"description": "A suite of enhancements for new Reddit. User tags, custom themes, account switcher, keyword filter, and more!",
"icons": {
"16": "icons\/logo_16.png",
"32": "icons\/logo_32.png",
"48": "icons\/logo_48.png",
"128": "icons\/logo_128.png"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Reddit Redux",
"default_popup": "settings.html"
},
"options_page": "options.html",
"permissions": [
"declarativeContent",
"storage",
"cookies"
],
"host_permissions": [
"*:\/\/*.reddit.com\/"
],
"content_scripts": [
{
"css": [
"main.css"
],
"js": [
"contentScript.js"
],
"matches": [
"https:\/\/*.reddit.com\/*"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"*.css",
"*.svg",
"*.png"
],
"matches": [
"https:\/\/*.reddit.com\/*"
]
}
]
}