Twitch Channel Points Auto Redeem
Automatically redeem the bonus channel points when the option pops up in twitch chat
Vad är Twitch Channel Points Auto Redeem?
Twitch Channel Points Auto Redeem är en Chrome-tillägg utvecklad av Frank, och dess huvudfunktion är "Automatically redeem the bonus channel points when the option pops up in twitch chat".
Tilläggsskärmbilder
Ladda ner Twitch Channel Points Auto Redeem-förlängningens CRX-fil
Ladda ner Twitch Channel Points Auto Redeem-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
You can tell it is working because it will say "STREAM CHAT (AUTO ✅)" instead of just "STREAM CHAT" above the chat. It will take a few seconds to appear after a stream is loaded. Open source at https://github.com/FrankSalmick/twitch-autoredeem Report problems at https://github.com/FrankSalmick/twitch-autoredeem/issues
Grundläggande Information om Tillägg
Namn | Twitch Channel Points Auto Redeem |
ID | aklgphppnaannfmmijfggcckafbkbihi |
Officiell webbadress | https://chromewebstore.google.com/detail/twitch-channel-points-aut/aklgphppnaannfmmijfggcckafbkbihi |
Beskrivning | Automatically redeem the bonus channel points when the option pops up in twitch chat |
Filstorlek | 7.08 KB |
Antal Installationer | 903 |
Aktuell Version | 20.12.23 |
Senast Uppdaterad | 2020-12-24 |
Publiceringsdatum | 2020-04-08 |
Betyg | 4.80/5 Totalt 5 Betyg |
Utvecklare | Frank |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/FrankSalmick/twitch-autoredeem |
Hjälpsida URL | https://github.com/FrankSalmick/twitch-autoredeem/issues |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Automatically redeem the bonus channel points when the option pops up in twitch chat", "manifest_version": 2, "name": "Twitch Channel Points Auto Redeem", "short_name": "Channel Points Redeemer", "version": "20.12.23", "content_scripts": [ { "matches": [ "https:\/\/*.twitch.tv\/*" ], "js": [ "twitchAutoredeem.js" ], "run_at": "document_idle" } ], "icons": { "128": "icon128.png" } } |