Hide sidebar for twitch
Hide left sidebar
What is Hide sidebar for twitch?
Hide sidebar for twitch is a Chrome extension developed by shirataki, and its main feature is "Hide left sidebar".
Extension Screenshots
Download Hide sidebar for twitch Extension CRX File
Download Hide sidebar for twitch 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
I made this tool because the sidebar can not be hidden in the new design. Please contact me from twitter if you need anything.
Extension Basic Information
Name | |
ID | gfjidlccjjdicmoidflmfdnlfnfckpji |
Official URL | https://chrome.google.com/webstore/detail/hide-sidebar-for-twitch/gfjidlccjjdicmoidflmfdnlfnfckpji |
Description | Hide left sidebar |
File Size | 35.2 KB |
Installation Count | 45 |
Current Version | 0.0.1.1 |
Last Updated | 2018-08-04 |
Publish Date | 2018-08-04 |
Developer | shirataki |
[email protected] | |
Payment Type | free |
Help Page URL | https://twitter.com/shirataki_nico2 |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hide sidebar for twitch", "version": "0.0.1.1", "description": "Hide left sidebar", "browser_action": { "default_icon": { "19": "hide-sidebar-twitch-48x48.png" } }, "icons": { "48": "hide-sidebar-twitch-48x48.png" }, "author": "@shirataki_nico2", "homepage_url": "http:\/\/fpstps.net", "content_scripts": [ { "matches": [ "http:\/\/*.twitch.tv\/*", "https:\/\/*.twitch.tv\/*" ], "js": [ "jquery-3.3.1.min.js", "contents.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "tabs", "background", "http:\/\/*.twitch.tv\/", "https:\/\/*.twitch.tv\/" ] } |