Twitch Channel Points Auto Redeem

Automatically redeems bonus points from Twitch Channel Points during live streams.

Τι είναι το Twitch Channel Points Auto Redeem;

Το Twitch Channel Points Auto Redeem είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Thiago Mansur Gonçalves, και η κύρια λειτουργία του είναι "Automatically redeems bonus points from Twitch Channel Points during live streams.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Twitch Channel Points Auto Redeem

Λήψη αρχείων επέκτασης Twitch Channel Points Auto Redeem σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension will redeem the bonus points from Twitch Channel Points that are given to viewers during live streams each 15 minutes.

Naturally, you need to click on a small button to claim those bonus points, but with this extension, the job is done automatically.

It supports 2 streams at the same time (Twitch limit) and the stream tabs don't need to be active, just need to be open.

-- 2020 --

v1.0.1 - sep 10
- Now you can pause the execution of the extension;
- Added some instructions about the usage of the extension;
- Changed the extension category to Productivity.

v1.0.2 - oct 6
- Some visual changes on the extension popup;
- Now the page is reloaded automatically when an error occurs on the live stream reproduction;
- Changed the chest detection to 2 seconds to avoid duplicated notification;
- Now you can check the update history of the extension.

v1.0.3 - dec 19
- Fixed chest button detection.

v1.0.4 - dec 28
- Changed the error detection to 10 seconds to avoid duplicated notification.
- Removed some text from the popup to avoid visual pollution.
- Added a version indicator on the bottom right corner of the popup.
- Added a 'Buy Me a Coffee' button. Thanks for the support! :)

-- 2021 --

 v1.0.5 - may 19
- Fixed chest button detection.
- Added buttons to my social networks and mail.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Twitch Channel Points Auto Redeem Twitch Channel Points Auto Redeem
ID klmjghhmchlbcjechkhmgcjhkbbbjglb
Επίσημο URL https://chromewebstore.google.com/detail/twitch-channel-points-aut/klmjghhmchlbcjechkhmgcjhkbbbjglb
Περιγραφή Automatically redeems bonus points from Twitch Channel Points during live streams.
Μέγεθος Αρχείου 27.04 KB
Αριθμός Εγκαταστάσεων 10,000
Τρέχουσα Έκδοση 1.0.5
Τελευταία Ενημέρωση 2021-05-19
Ημερομηνία Δημοσίευσης 2020-05-11
Αξιολόγηση 4.38/5 Συνολικά 13 Αξιολογήσεις
Προγραμματιστής Thiago Mansur Gonçalves
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitch Channel Points Auto Redeem",
    "description": "Automatically redeems bonus points from Twitch Channel Points during live streams.",
    "version": "1.0.5",
    "icons": {
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "popup.js",
                "arrive-2.4.1.min.js"
            ]
        }
    ]
}