Twitch++
Some simple twitch.tv enhancements
Wat is Twitch++?
Twitch++ is een Chrome-extensie ontwikkeld door Matt Carrick, en de belangrijkste functie is "Some simple twitch.tv enhancements".
Extensie Screenshots
Download het CRX-bestand van de extensie Twitch++
Download Twitch++-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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) Basisinformatie over de Extensie
| Naam | |
| ID | lpgmnkfdelbjjbmdodlonnldlagofkbd |
| Officiële URL | https://chromewebstore.google.com/detail/twitch++/lpgmnkfdelbjjbmdodlonnldlagofkbd |
| Beschrijving | Some simple twitch.tv enhancements |
| Bestandsgrootte | 40 KB |
| Aantal Installaties | 123 |
| Huidige Versie | 0.3 |
| Laatst Bijgewerkt | 2018-11-20 |
| Publicatiedatum | 2018-11-20 |
| Ontwikkelaar | Matt Carrick |
| Betalingswijze | free |
| Extensiewebsite | https://rokco.org |
| Ondersteunde Talen | 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"
]
} | |