RaidViewer
A handy extension that automatically removes the referrer URL when raiding a channel, to ensure that the streamer gets your view.
Τι είναι το RaidViewer;
Το RaidViewer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Connor Wright, και η κύρια λειτουργία του είναι "A handy extension that automatically removes the referrer URL when raiding a channel, to ensure that the streamer gets your view.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης RaidViewer
Λήψη αρχείων επέκτασης RaidViewer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension will automatically remove the raid referral from the URL after being part of a raid to another channel. This will help the channel that has been raided to receive your view. This extension is only activated on twitch.tv sites.
Βασικές Πληροφορίες Επέκτασης
Όνομα | RaidViewer |
ID | kchhfcpcokkcenicaepbnnilldheogni |
Επίσημο URL | https://chromewebstore.google.com/detail/raidviewer/kchhfcpcokkcenicaepbnnilldheogni |
Περιγραφή | A handy extension that automatically removes the referrer URL when raiding a channel, to ensure that the streamer gets your view. |
Μέγεθος Αρχείου | 36.95 KB |
Αριθμός Εγκαταστάσεων | 1,125 |
Τρέχουσα Έκδοση | 1.2 |
Τελευταία Ενημέρωση | 2019-04-18 |
Ημερομηνία Δημοσίευσης | 2019-04-18 |
Αξιολόγηση | 4.20/5 Συνολικά 5 Αξιολογήσεις |
Προγραμματιστής | Connor Wright |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/volvoxcommunity/raidviewer |
Διεύθυνση URL της Σελίδας Βοήθειας | https://discord.gg/jReSmc3 |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "RaidViewer", "version": "1.2", "author": "Volvox", "background": { "scripts": [ "background.js" ] }, "icons": { "16": "volvox-16.png", "48": "volvox-48.png", "128": "volvox-128.png" }, "description": "A handy extension that automatically removes the referrer URL when raiding a channel, to ensure that the streamer gets your view.", "content_scripts": [ { "matches": [ "https:\/\/www.twitch.tv\/*" ], "js": [ "jquery-2.1.3.min.js", "content.js" ] } ] } |