Twitch++
Some simple twitch.tv enhancements
Co to jest Twitch++?
Twitch++ to rozszerzenie Chrome opracowane przez Matt Carrick, a jego główną funkcją jest „Some simple twitch.tv enhancements”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Twitch++
Pobierz pliki rozszerzeń Twitch++ w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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)
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | lpgmnkfdelbjjbmdodlonnldlagofkbd |
Oficjalny URL | https://chromewebstore.google.com/detail/twitch++/lpgmnkfdelbjjbmdodlonnldlagofkbd |
Opis | Some simple twitch.tv enhancements |
Rozmiar pliku | 40 KB |
Liczba instalacji | 123 |
Aktualna Wersja | 0.3 |
Ostatnia Aktualizacja | 2018-11-20 |
Data Publikacji | 2018-11-20 |
Deweloper | Matt Carrick |
Typ Płatności | free |
Strona Rozszerzenia | https://rokco.org |
Obsługiwane Języki | 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" ] } |