MLBoxcard
Gives daily boxscores for MLB games in a formatted toolbar for anypage.
Was ist MLBoxcard?
MLBoxcard ist eine Chrome-Erweiterung, die von sdpetrides entwickelt wurde, und ihr Hauptmerkmal ist "Gives daily boxscores for MLB games in a formatted toolbar for anypage.".
Erweiterungsscreenshots
MLBoxcard-Erweiterungs-CRX-Datei herunterladen
Laden Sie MLBoxcard-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | npfplangdaaldgneklfajkmheecgcfgm |
Offizielle URL | https://chrome.google.com/webstore/detail/npfplangdaaldgneklfajkmheecgcfgm |
Beschreibung | Gives daily boxscores for MLB games in a formatted toolbar for anypage. |
Dateigröße | 10.41 KB |
Installationsanzahl | 23 |
Aktuelle Version | 1.0 |
Letztes Update | 2016-08-16 |
Veröffentlichungsdatum | 2016-08-16 |
Bewertung | 3.00/5 Insgesamt 2 Bewertungen |
Entwickler | sdpetrides |
Zahlungsart | free |
Unterstützte Sprachen | 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", " |