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 |
Eメール | [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\/" ] } |