Twitch Peak
Keeps the current tab set to the largest stream for any given game on Twitch!
Τι είναι το Twitch Peak;
Το Twitch Peak είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον noahwillcrow, και η κύρια λειτουργία του είναι "Keeps the current tab set to the largest stream for any given game on Twitch!".
Λήψη αρχείου CRX της επέκτασης Twitch Peak
Λήψη αρχείων επέκτασης Twitch Peak σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Keep your eyes glued to only the top Twitch stream of any given game! Instructions: Just install this extension, click the icon in the Chrome menu, type in the name of your game, and click "Start Watching"! Source code is available on GitHub!
Βασικές Πληροφορίες Επέκτασης
Όνομα | Twitch Peak |
ID | lmdldooiahghimedndlabgjfkddemjdj |
Επίσημο URL | https://chromewebstore.google.com/detail/twitch-peak/lmdldooiahghimedndlabgjfkddemjdj |
Περιγραφή | Keeps the current tab set to the largest stream for any given game on Twitch! |
Μέγεθος Αρχείου | 120 KB |
Αριθμός Εγκαταστάσεων | 23 |
Τρέχουσα Έκδοση | 1.0.3 |
Τελευταία Ενημέρωση | 2017-07-25 |
Ημερομηνία Δημοσίευσης | 2017-07-25 |
Προγραμματιστής | noahwillcrow |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/noahwillcrow/TwitchPeak |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitch Peak", "short_name": "TwitchPeak", "version": "1.0.3", "description": "Keeps the current tab set to the largest stream for any given game on Twitch!", "icons": { "32": "icon-32.png", "128": "icon-128.png" }, "permissions": [ "tabs", "https:\/\/api.twitch.tv\/kraken\/streams" ], "browser_action": { "default_title": "", "default_icon": "icon-32.png", "default_popup": "popup.html" }, "background": { "scripts": [ "jquery-3.2.1.min.js", "background.js" ], "persistent": true } } |