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 |
| 公式URL | 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 |
| Eメール | [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
}
} | |