MLBoxcard
Gives daily boxscores for MLB games in a formatted toolbar for anypage.
Qu'est-ce que MLBoxcard ?
MLBoxcard est une extension Chrome développée par sdpetrides, et sa fonction principale est "Gives daily boxscores for MLB games in a formatted toolbar for anypage.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension MLBoxcard
Téléchargez les fichiers d'extension MLBoxcard au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | npfplangdaaldgneklfajkmheecgcfgm |
URL Officiel | https://chrome.google.com/webstore/detail/npfplangdaaldgneklfajkmheecgcfgm |
Description | Gives daily boxscores for MLB games in a formatted toolbar for anypage. |
Taille du Fichier | 10.41 KB |
Nombre d'Installations | 23 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2016-08-16 |
Date de Publication | 2016-08-16 |
Évaluation | 3.00/5 Total 2 Évaluations |
Développeur | sdpetrides |
Type de Paiement | free |
Langues Prises en Charge | 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", " |