Repeek (formerly FACEIT Enhancer)
Repeek enhances your experience on FACEIT and adds useful features
Τι είναι το Repeek (formerly FACEIT Enhancer);
Το Repeek (formerly FACEIT Enhancer) είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://repeek.gg, και η κύρια λειτουργία του είναι "Repeek enhances your experience on FACEIT and adds useful features".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Repeek (formerly FACEIT Enhancer)
Λήψη αρχείων επέκτασης Repeek (formerly FACEIT Enhancer) σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
The browser extension that boosts you to the next level on FACEIT – Trusted by over 900.000 players worldwide, Repeek enhances your experience on FACEIT and adds useful features. Highlights: - Ready up for matches automatically - Accept party invites automatically - See teams Elo in match rooms - See how much Elo you'll win or loose - See how much Elo you have won and lost in your match history - and more! All features are configurable to your personal preferences. Socials: - Twitter: https://twitter.com/repeekgg - Reddit: https://www.reddit.com/r/repeekgg - Steam Group: http://steamcommunity.com/groups/repeekdotgg Repeek is developed independently, and is not officially endorsed by or affiliated with FACEIT.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Repeek (formerly FACEIT Enhancer) |
ID | mokknliiomknodkdmpcellamkopbdmao |
Επίσημο URL | https://chromewebstore.google.com/detail/repeek-formerly-faceit-en/mokknliiomknodkdmpcellamkopbdmao |
Περιγραφή | Repeek enhances your experience on FACEIT and adds useful features |
Μέγεθος Αρχείου | 751 KB |
Αριθμός Εγκαταστάσεων | 917,459 |
Τρέχουσα Έκδοση | 4.0.2 |
Τελευταία Ενημέρωση | 2024-01-29 |
Ημερομηνία Δημοσίευσης | 2020-06-27 |
Αξιολόγηση | 4.15/5 Συνολικά 277 Αξιολογήσεις |
Προγραμματιστής | https://repeek.gg |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://repeek.gg |
Διεύθυνση URL της Σελίδας Βοήθειας | https://twitter.com/repeekgg |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Repeek (formerly FACEIT Enhancer)", "description": "Repeek enhances your experience on FACEIT and adds useful features", "version": "4.0.2", "manifest_version": 3, "homepage_url": "https:\/\/repeek.gg", "minimum_chrome_version": "105.0", "permissions": [ "storage", "notifications", "clipboardWrite", "scripting" ], "host_permissions": [ "https:\/\/api.faceit.com\/*" ], "optional_host_permissions": [ "https:\/\/beta.faceit.com\/*" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/www.faceit.com\/*" ], "js": [ "content.js" ], "css": [ "fonts.css" ] } ], "action": { "default_icon": "icon48.png", "default_popup": "popup.html" }, "background": { "service_worker": "background.js" }, "options_ui": { "page": "options.html", "open_in_tab": true } } |