Hide The Scores! (in NBA League Pass)
Hide all scores in the NBA League Pass game page.
Hide The Scores! (in NBA League Pass) là gì?
Hide The Scores! (in NBA League Pass) là một tiện ích mở rộng Chrome được phát triển bởi jorge.silva.jetter, và tính năng chính của nó là "Hide all scores in the NBA League Pass game page.".
Tải xuống tệp CRX của tiện ích mở rộng Hide The Scores! (in NBA League Pass)
Tải xuống các tệp mở rộng Hide The Scores! (in NBA League Pass) 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 all scores in the NBA League Pass game page. It's really annoying watching a game on NBA League Pass and seeing the score at the same time! Specially when the feed is behind and YOU NOW KNOW WHAT GOING TO HAPPEN! Fix all that by just hiding all the scores! This extension only adds one line of CSS to add the scores, so it won't make your pages load any slower or run any code at all.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | adabhlmohojcielbiknhlcmapbidbnkp |
URL Chính Thức | https://chrome.google.com/webstore/detail/hide-the-scores-in-nba-le/adabhlmohojcielbiknhlcmapbidbnkp |
Mô tả | Hide all scores in the NBA League Pass game page. |
Kích Thước Tệp | 5.47 KB |
Số Lần Cài Đặt | 61 |
Phiên Bản Hiện Tại | 0.0.1 |
Cập Nhật Lần Cuối | 2017-01-21 |
Ngày Phát Hành | 2017-01-21 |
Nhà Phát Triển | jorge.silva.jetter |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hide The Scores! (in NBA League Pass)", "description": "Hide all scores in the NBA League Pass game page.", "manifest_version": 2, "version": "0.0.1", "icons": { "128": "icon_128.png" }, "content_scripts": [ { "matches": [ "http:\/\/www.nba.com\/*" ], "css": [ "main.css" ], "js": [ "main.js" ] } ], "browser_action": { "default_icon": "icon.png" }, "permissions": [ "tabs", "http:\/\/www.nba.com\/*" ] } |