Hide The Scores! (in NBA League Pass)
Hide all scores in the NBA League Pass game page.
Hide The Scores! (in NBA League Pass)คืออะไร?
Hide The Scores! (in NBA League Pass) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jorge.silva.jetter และคุณลักษณะหลักของมันคือ "Hide all scores in the NBA League Pass game page."
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hide The Scores! (in NBA League Pass)
ดาวน์โหลดไฟล์ส่วนขยาย Hide The Scores! (in NBA League Pass) ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | adabhlmohojcielbiknhlcmapbidbnkp |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/hide-the-scores-in-nba-le/adabhlmohojcielbiknhlcmapbidbnkp |
คำอธิบาย | Hide all scores in the NBA League Pass game page. |
ขนาดไฟล์ | 5.47 KB |
จำนวนการติดตั้ง | 61 |
เวอร์ชันปัจจุบัน | 0.0.1 |
อัปเดตครั้งล่าสุด | 2017-01-21 |
วันที่เผยแพร่ | 2017-01-21 |
ผู้พัฒนา | jorge.silva.jetter |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | 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\/*" ] } |