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 James_Hynes द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hides the scores of NFL games for certain teams until you want to see them"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ESPN NFL Score Hider एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 } } |