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)是由jorge.silva.jetter开发的Chrome扩展程序,该扩展的主要功能是“Hide all scores in the NBA League Pass game page.”。
下载Hide The Scores! (in NBA League Pass)扩展crx文件
下载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\/*" ] } |