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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
이메일 | [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 } } |