####This simple plugin hides the sidebar on reddit when the window size is less than 1200 pixels wide.
Download here.
| { | |
| "name" : "Hide Reddit Sidebar", | |
| "version" : "1.1", | |
| "manifest_version" : 2, | |
| "description" : "hides the sidebar when the media is too small", | |
| "content_scripts" : [ | |
| { | |
| "matches" : ["http://*.reddit.com/*"], | |
| "css" : ["style.css"], | |
| "run_at" : "document_start" | |
| } | |
| ] | |
| } |
| @media all and (max-width:1199px){ | |
| .side { | |
| width: 0px !important; | |
| height: 0px !important; | |
| visibility : hidden !important; | |
| } | |
| } |