MLBoxcard
Gives daily boxscores for MLB games in a formatted toolbar for anypage.
MLBoxcardคืออะไร?
MLBoxcard เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sdpetrides และคุณลักษณะหลักของมันคือ "Gives daily boxscores for MLB games in a formatted toolbar for anypage."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MLBoxcard
ดาวน์โหลดไฟล์ส่วนขยาย MLBoxcard ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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", " |