ESPN NFL Score Hider
Hides the scores of NFL games for certain teams until you want to see them
Τι είναι το ESPN NFL Score Hider;
Το ESPN NFL Score Hider είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον James_Hynes, και η κύρια λειτουργία του είναι "Hides the scores of NFL games for certain teams until you want to see them".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης ESPN NFL Score Hider
Λήψη αρχείων επέκτασης ESPN NFL Score Hider σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Hide teams from ESPN's NFLscoreboard (http://www.espn.com/nfl/scoreboard). Select any number of teams, and their scores will appear whited out on ESPN. Perfect for anyone who can't watch their team play live but still want to follow the league. Leave a review and please don't hesitate to send any feedback/change requests.
Βασικές Πληροφορίες Επέκτασης
Όνομα | ESPN NFL Score Hider |
ID | hmmcjkppblmgkjbkjkielpomhpbdokae |
Επίσημο URL | https://chromewebstore.google.com/detail/espn-nfl-score-hider/hmmcjkppblmgkjbkjkielpomhpbdokae |
Περιγραφή | Hides the scores of NFL games for certain teams until you want to see them |
Μέγεθος Αρχείου | 53.7 KB |
Αριθμός Εγκαταστάσεων | 29 |
Τρέχουσα Έκδοση | 0.1.2 |
Τελευταία Ενημέρωση | 2018-02-22 |
Ημερομηνία Δημοσίευσης | 2018-02-21 |
Προγραμματιστής | James_Hynes |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ESPN NFL Score Hider", "description": "Hides the scores of NFL games for certain teams until you want to see them", "version": "0.1.2", "content_scripts": [ { "matches": [ "http:\/\/www.espn.com\/nfl\/scoreboard\/*" ], "css": [ "inject.css" ], "js": [ "lib\/jquery-3.3.1.min.js", "inject.js" ], "run_at": "document_end" } ], "browser_action": { "default_popup": "popup.html", "default_icon": "res\/icon.png" }, "icons": { "16": "res\/icon16.png", "32": "res\/icon32.png", "48": "res\/icon48.png", "128": "res\/icon.png" }, "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false } } |