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是由James_Hynes開發的Chrome擴展程式,該擴展的主要功能是“Hides the scores of NFL games for certain teams until you want to see them”。
擴展截圖
下載ESPN NFL Score Hider擴展crx文件
下載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 |
官方網址 | 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 } } |