Hide sidebar for twitch
Hide left sidebar
什么是Hide sidebar for twitch?
Hide sidebar for twitch是由shirataki开发的Chrome扩展程序,该扩展的主要功能是“Hide left sidebar”。
扩展截图
下载Hide sidebar for twitch扩展crx文件
下载Hide sidebar for twitch扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
I made this tool because the sidebar can not be hidden in the new design. Please contact me from twitter if you need anything.
扩展基本信息
名称 | |
ID | gfjidlccjjdicmoidflmfdnlfnfckpji |
官方URL | https://chrome.google.com/webstore/detail/hide-sidebar-for-twitch/gfjidlccjjdicmoidflmfdnlfnfckpji |
简介 | Hide left sidebar |
文件大小 | 35.2 KB |
安装次数 | 45 |
当前版本 | 0.0.1.1 |
更新时间 | 2018-08-04 |
上架时间 | 2018-08-04 |
开发者 | shirataki |
电子邮箱 | [email protected] |
付费类型 | free |
帮助页面URL | https://twitter.com/shirataki_nico2 |
支持的语言 | 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\/" ] } |