NBA Close Games
Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.
NBA Close Gamesとは何ですか?
NBA Close Gamesはmarcnewportによって開発されたChromeの拡張機能で、その主な機能は「Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.」です。
拡張機能のスクリーンショット
NBA Close Games拡張機能のCRXファイルをダウンロード
NBA Close Games拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
A chrome extension for http://watch.nba.com that highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.
拡張機能の基本情報
名前 | |
ID | fjjgljnmaijpilbcgbedemcnpffjkaaj |
公式URL | https://chrome.google.com/webstore/detail/nba-close-games/fjjgljnmaijpilbcgbedemcnpffjkaaj |
説明 | Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off. |
ファイルサイズ | 17.44 KB |
インストール数 | 150 |
現在のバージョン | 2.2.1 |
最終更新日 | 2018-10-20 |
公開日 | 2018-10-20 |
評価 | 4.67/5 合計 3 レビュー |
開発者 | marcnewport |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | http://marcnewport.com |
ヘルプページのURL | https://github.com/marcnewport/nba-close-games/issues |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "NBA Close Games", "description": "Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.", "version": "2.2.1", "options_page": "options.html", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "icons": [ "icons\/icon.png", "icons\/icon-disabled.png" ], "default_icon": "icons\/icon-disabled.png" }, "background": { "scripts": [ "js\/background.js", "js\/utils.js", "js\/options.js", "js\/manipulate.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/watch.nba.com\/*" ], "css": [ "css\/manipulate.css" ], "run_at": "document_end", "all_frames": true } ], "permissions": [ "activeTab", "tabs", "storage", "https:\/\/stats.nba.com\/*", "https:\/\/data.nba.net\/*", "https:\/\/wikihoops.com\/*" ] } |