MLBoxcard
Gives daily boxscores for MLB games in a formatted toolbar for anypage.
Cos'è MLBoxcard?
MLBoxcard è un'estensione di Chrome sviluppata da sdpetrides, e la sua funzione principale è "Gives daily boxscores for MLB games in a formatted toolbar for anypage.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione MLBoxcard
Scarica i file di estensione MLBoxcard in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | npfplangdaaldgneklfajkmheecgcfgm |
URL Ufficiale | https://chrome.google.com/webstore/detail/npfplangdaaldgneklfajkmheecgcfgm |
Descrizione | Gives daily boxscores for MLB games in a formatted toolbar for anypage. |
Dimensione del File | 10.41 KB |
Conteggio Installazioni | 23 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2016-08-16 |
Data di Pubblicazione | 2016-08-16 |
Valutazione | 3.00/5 Totale 2 Valutazioni |
Sviluppatore | sdpetrides |
Tipo di Pagamento | free |
Lingue Supportate | 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", " |