Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Control for Reddit",
"version": "1.3.5",
"description": "Lets you take control of your time by limiting reddit features",
"permissions": [
"storage"
],
"host_permissions": [
"*:\/\/*.reddit.com\/*",
"*:\/\/old.reddit.com\/*"
],
"icons": {
"128": "icons\/control_simple.png"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/old.reddit.com\/*"
],
"js": [
"js\/oldreddit.js"
],
"run_at": "document_start"
},
{
"matches": [
"*:\/\/*.reddit.com\/*"
],
"js": [
"js\/control.js"
],
"run_at": "document_start"
}
]
}