Toggle left/right-side content in reddit.com for more real-estate
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": "ToggleRedditSidebar",
"version": "0.1",
"description": "Toggle right-side content reddit.com for more real-estate",
"browser_specific_settings": {
"gecko": {
"id": "nandshnu@gmail.com",
"strict_min_version": "58.0"
}
},
"icons": {
"48": "icons/48.png"
},
"content_scripts": [
{
"matches": [
"*://*.reddit.com/*"
],
"js": [
"toggleRedditSidebar.js"
]
}
]
}