Hockeyarena Extension
Expand the Hockeyarena experience and adds useful features
什麼是Hockeyarena Extension?
Hockeyarena Extension是由airen29開發的Chrome擴展程式,該擴展的主要功能是“Expand the Hockeyarena experience and adds useful features”。
擴展截圖
下載Hockeyarena Extension擴展crx文件
下載Hockeyarena Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Browser extension that enhances the HockeyArena experience and adds useful features such as:
- ability to hide sponsor menu
- ability to have a banner table on new message
- ability to unstick navigation menu
- ability to hide discussions
- ability to stop the player for one match (improved) with also option to stop the substitute from playing
There are minor fixes that speed up extension.
- We have added icons for HAE creator into Discussion and Team/Player info.
https://github.com/airen29/haextension/releases/tag/v0.1.5 擴展基本資訊
| 名稱 | |
| ID | jbcghenmgbijpebelbgiagodgfhdcnjd |
| 官方網址 | https://chromewebstore.google.com/detail/hockeyarena-extension/jbcghenmgbijpebelbgiagodgfhdcnjd |
| 簡介 | Expand the Hockeyarena experience and adds useful features |
| 檔案大小 | 125 KB |
| 安裝次數 | 78 |
| 目前版本 | 0.1.5 |
| 更新時間 | 2022-07-21 |
| 上架時間 | 2020-10-13 |
| 開發者 | airen29 |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://www.github.com/airen29 |
| 說明頁面URL | https://www.github.com/airen29 |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Hockeyarena Extension",
"description": "Expand the Hockeyarena experience and adds useful features",
"version": "0.1.5",
"manifest_version": 2,
"homepage_url": "https:\/\/github.com\/airen29",
"minimum_chrome_version": "51",
"browser_specific_settings": {
"gecko": {
"id": "{2151e2b3-e0a2-4ad4-bcbe-efd34bb3e15c}",
"strict_min_version": "65.0"
}
},
"permissions": [
"storage",
"notifications"
],
"icons": {
"16": "16x16.png",
"48": "48x48.png",
"128": "128x128.png"
},
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"https:\/\/www.hockeyarena.net\/*"
],
"js": [
"content.js"
]
}
],
"browser_action": {
"default_icon": "48x48.png",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
}
} | |