Hide sidebar for twitch
Hide left sidebar
Cos'è Hide sidebar for twitch?
Hide sidebar for twitch è un'estensione di Chrome sviluppata da shirataki, e la sua funzione principale è "Hide left sidebar".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Hide sidebar for twitch
Scarica i file di estensione Hide sidebar for twitch in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
I made this tool because the sidebar can not be hidden in the new design. Please contact me from twitter if you need anything.
Informazioni di Base sull'Estensione
Nome | |
ID | gfjidlccjjdicmoidflmfdnlfnfckpji |
URL Ufficiale | https://chrome.google.com/webstore/detail/hide-sidebar-for-twitch/gfjidlccjjdicmoidflmfdnlfnfckpji |
Descrizione | Hide left sidebar |
Dimensione del File | 35.2 KB |
Conteggio Installazioni | 45 |
Versione Corrente | 0.0.1.1 |
Ultimo Aggiornamento | 2018-08-04 |
Data di Pubblicazione | 2018-08-04 |
Sviluppatore | shirataki |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://twitter.com/shirataki_nico2 |
Lingue Supportate | 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\/" ] } |