MLBoxcard
Gives daily boxscores for MLB games in a formatted toolbar for anypage.
MLBoxcard란 무엇입니까?
MLBoxcard은(는) sdpetrides에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Gives daily boxscores for MLB games in a formatted toolbar for anypage."입니다.
확장 프로그램 스크린샷
MLBoxcard 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
MLBoxscore The MLBoxscore is Chrome extension that displays a toolbar with daily boxscores for MLB games. Features and Options Scores are reloaded each time a page is reloaded. To reload the scores without reloading the page, choose the Update button in the upper right corner. To hide the toolbar temporarily, click the Hide button in the upper right corner. Because elements and styles are injecting into the page, the toolbar may not render correctly for each domain. In these situations, the Hide option is most useful. Copyright Created and developed by Stephen Petrides in 2016.
확장 프로그램 기본 정보
이름 | |
ID | npfplangdaaldgneklfajkmheecgcfgm |
공식 URL | https://chrome.google.com/webstore/detail/npfplangdaaldgneklfajkmheecgcfgm |
설명 | Gives daily boxscores for MLB games in a formatted toolbar for anypage. |
파일 크기 | 10.41 KB |
설치 횟수 | 23 |
현재 버전 | 1.0 |
최근 업데이트 | 2016-08-16 |
출시 날짜 | 2016-08-16 |
평점 | 3.00/5 총 2 개의 평점 |
개발자 | sdpetrides |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "MLBoxcard", "description": "Gives daily boxscores for MLB games in a formatted toolbar for anypage.", "version": "1.0", "browser_action": { "default_icon": "icon.png", "default_title": "MLBoxcard" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ], "exclude_matches": [ "https:\/\/*.google.com\/*", "https:\/\/*.reddit.com\/*", "https:\/\/*.youtube.com\/*" ], "js": [ "toolbar.js", "statsapi.js" ], "css": [ "toolbar.css" ], "run_at": "document_idle" } ], "permissions": [ "activeTab", "webRequest", "webRequestBlocking", " |