Twitch Chat Overlay
Overlay the Twitch chat when in fullscreen mode.
Vad är Twitch Chat Overlay?
Twitch Chat Overlay är en Chrome-tillägg utvecklad av trmcnvn, och dess huvudfunktion är "Overlay the Twitch chat when in fullscreen mode.".
Tilläggsskärmbilder
Ladda ner Twitch Chat Overlay-förlängningens CRX-fil
Ladda ner Twitch Chat Overlay-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Twitch Chat Overlay will allow you to view and interact with the chat while watching a stream in fullscreen.
You can move, resize, and toggle the chat window while in full-screen and these settings are remembered the next time you watch! Grundläggande Information om Tillägg
| Namn | |
| ID | lcljofkmbcdnjekeamikmefcjohmhgng |
| Officiell webbadress | https://chromewebstore.google.com/detail/twitch-chat-overlay/lcljofkmbcdnjekeamikmefcjohmhgng |
| Beskrivning | Overlay the Twitch chat when in fullscreen mode. |
| Filstorlek | 25.92 KB |
| Antal Installationer | 3,615 |
| Aktuell Version | 1.10 |
| Senast Uppdaterad | 2020-01-21 |
| Publiceringsdatum | 2020-01-14 |
| Betyg | 3.70/5 Totalt 10 Betyg |
| Utvecklare | trmcnvn |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/trmcnvn/twitch-chat-overlay |
| Hjälpsida URL | https://github.com/trmcnvn/twitch-chat-overlay/issues |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Twitch Chat Overlay",
"description": "Overlay the Twitch chat when in fullscreen mode.",
"version": "1.10",
"homepage_url": "https:\/\/github.com\/trmcnvn\/twitch-chat-overlay",
"icons": {
"16": "resources\/icon-16.jpg",
"48": "resources\/icon-48.jpg",
"96": "resources\/icon-96.jpg",
"128": "resources\/icon-128.jpg"
},
"web_accessible_resources": [
"overlay.js"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.twitch.tv\/*"
],
"js": [
"main.js"
],
"css": [
"style.css"
],
"run_at": "document_idle"
}
]
} | |