Hockeyarena Extension

Expand the Hockeyarena experience and adds useful features

Hockeyarena Extension là gì?

Hockeyarena Extension là một tiện ích mở rộng Chrome được phát triển bởi airen29, và tính năng chính của nó là "Expand the Hockeyarena experience and adds useful features".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Hockeyarena Extension

Tải xuống các tệp mở rộng Hockeyarena Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Hockeyarena Extension Hockeyarena Extension
ID jbcghenmgbijpebelbgiagodgfhdcnjd
URL Chính Thức https://chromewebstore.google.com/detail/hockeyarena-extension/jbcghenmgbijpebelbgiagodgfhdcnjd
Mô tả Expand the Hockeyarena experience and adds useful features
Kích Thước Tệp 125 KB
Số Lần Cài Đặt 78
Phiên Bản Hiện Tại 0.1.5
Cập Nhật Lần Cuối 2022-07-21
Ngày Phát Hành 2020-10-13
Nhà Phát Triển airen29
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.github.com/airen29
URL Trang Trợ Giúp https://www.github.com/airen29
Ngôn Ngữ Được Hỗ Trợ 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
    }
}