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