Toggle Stackoverflow sidebar
Adds a button to toggle the Stackoverflow sidebar.
What is Toggle Stackoverflow sidebar?
Toggle Stackoverflow sidebar is a Chrome extension developed by Unknown, and its main feature is "Adds a button to toggle the Stackoverflow sidebar.".
Extension Screenshots
Download Toggle Stackoverflow sidebar Extension CRX File
Download Toggle Stackoverflow sidebar extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Hides the distracting sidebar from Stackoverflow pages, centers the main text, and creates a button for revealing the sidebar.
Extension Basic Information
Name | Toggle Stackoverflow sidebar |
ID | jhgooipphocncabpmflocgdmhojmhibi |
Official URL | https://chromewebstore.google.com/detail/toggle-stackoverflow-side/jhgooipphocncabpmflocgdmhojmhibi |
Description | Adds a button to toggle the Stackoverflow sidebar. |
File Size | 107 KB |
Installation Count | 60 |
Current Version | 1.2 |
Last Updated | 2014-12-23 |
Publish Date | 2014-12-22 |
Rating | 5.00/5 Total 9 Ratings |
Developer | Unknown |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Toggle Stackoverflow sidebar", "manifest_version": 2, "version": "1.2", "description": "Adds a button to toggle the Stackoverflow sidebar.", "page_action": { "name": "Toggle Sidebar" }, "icons": { "128": "icon.png", "48": "icon.png", "16": "icon.png" }, "content_scripts": [ { "css": [ "jquery-ui.css" ], "js": [ "jquery.min.js", "background.js", "jquery-ui.min.js" ], "matches": [ "*:\/\/*.stackoverflow.com\/*" ] } ] } |