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 } } |