MLBoxcard
Gives daily boxscores for MLB games in a formatted toolbar for anypage.
¿Qué es MLBoxcard?
MLBoxcard es una extensión de Chrome desarrollada por sdpetrides, y su función principal es "Gives daily boxscores for MLB games in a formatted toolbar for anypage.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión MLBoxcard
Descarga archivos de extensión MLBoxcard en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | |
ID | npfplangdaaldgneklfajkmheecgcfgm |
URL Oficial | https://chrome.google.com/webstore/detail/npfplangdaaldgneklfajkmheecgcfgm |
Descripción | Gives daily boxscores for MLB games in a formatted toolbar for anypage. |
Tamaño del Archivo | 10.41 KB |
Cantidad de Instalaciones | 23 |
Versión Actual | 1.0 |
Última Actualización | 2016-08-16 |
Fecha de Publicación | 2016-08-16 |
Calificación | 3.00/5 Total de 2 Calificaciones |
Desarrollador | sdpetrides |
Tipo de Pago | free |
Idiomas Soportados | 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", " |