Twitch++
Some simple twitch.tv enhancements
Cos'è Twitch++?
Twitch++ è un'estensione di Chrome sviluppata da Matt Carrick, e la sua funzione principale è "Some simple twitch.tv enhancements".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitch++
Scarica i file di estensione 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
This extension adds a few enhancements to Twitch.tv that I want, namely -
- Fully hides extensions, and their controls
- Auto theater mode
- Mute the stream when the cursor leaves the window (good for when you are watching multiple streams) Informazioni di Base sull'Estensione
| Nome | |
| ID | lpgmnkfdelbjjbmdodlonnldlagofkbd |
| URL Ufficiale | https://chromewebstore.google.com/detail/twitch++/lpgmnkfdelbjjbmdodlonnldlagofkbd |
| Descrizione | Some simple twitch.tv enhancements |
| Dimensione del File | 40 KB |
| Conteggio Installazioni | 123 |
| Versione Corrente | 0.3 |
| Ultimo Aggiornamento | 2018-11-20 |
| Data di Pubblicazione | 2018-11-20 |
| Sviluppatore | Matt Carrick |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://rokco.org |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"background": {
"scripts": [
"jquery.min.js"
]
},
"browser_action": {
"default_icon": "icon_48.png",
"default_popup": "popup.html",
"default_title": "settings"
},
"content_scripts": [
{
"all_frames": true,
"js": [
"jquery.min.js",
"script.js"
],
"matches": [
"*:\/\/*.twitch.tv\/*"
],
"run_at": "document_end"
}
],
"description": "Some simple twitch.tv enhancements",
"icons": {
"128": "icon_128.png",
"16": "icon_16.png",
"48": "icon_48.png"
},
"manifest_version": 2,
"minimum_chrome_version": "37",
"name": "Twitch++",
"options_page": "options.html",
"permissions": [
"storage"
],
"version": "0.3",
"web_accessible_resources": [
"index.html"
]
} | |