ESPN NFL Score Hider
Hides the scores of NFL games for certain teams until you want to see them
ESPN NFL Score Hider là gì?
ESPN NFL Score Hider là một tiện ích mở rộng Chrome được phát triển bởi James_Hynes, và tính năng chính của nó là "Hides the scores of NFL games for certain teams until you want to see them".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng ESPN NFL Score Hider
Tải xuống các tệp mở rộng ESPN NFL Score Hider dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | ESPN NFL Score Hider |
ID | hmmcjkppblmgkjbkjkielpomhpbdokae |
URL Chính Thức | https://chromewebstore.google.com/detail/espn-nfl-score-hider/hmmcjkppblmgkjbkjkielpomhpbdokae |
Mô tả | Hides the scores of NFL games for certain teams until you want to see them |
Kích Thước Tệp | 53.7 KB |
Số Lần Cài Đặt | 29 |
Phiên Bản Hiện Tại | 0.1.2 |
Cập Nhật Lần Cuối | 2018-02-22 |
Ngày Phát Hành | 2018-02-21 |
Nhà Phát Triển | James_Hynes |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } } |