Canopy GUI Enhancer

Enhance the standard CambiumNetworks Canopy Web GUI

Canopy GUI Enhancer란 무엇입니까?

Canopy GUI Enhancer은(는) Mattia Basone에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enhance the standard CambiumNetworks Canopy Web GUI"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Canopy GUI Enhancer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension enhance the standard CambiumNetworks Canopy Web GUI.
It has been tested on PMP100, PMP430 and PMP450.

Sources: https://github.com/mattiabasone/CanopyGUIEnhancer
Donate to support this project https://goo.gl/5FBkVh

---------------------------------------------------------
---------------------------------------------------------

The extension has been tested on the following software versions, with old versions not all features may work.

- PMP100: 13.4.1
- PMP430: 13.4.1
- PMP450: 14.1*/15*
- PMP450i: 14*/15*
- PMP450m 15*

FEATURES:
- Real time throughput on Statistics -> Ethernet and Statistics -> Radio
- MAC Address LookUp on ARP page
- IP Address LookUp on NAT Table page
- Improved AP Evaluation page
- Improved AP Throughput page
- Improved AP Data VC page
- New styles for table, buttons, wrappers, menu                    

확장 프로그램 기본 정보

이름 Canopy GUI Enhancer Canopy GUI Enhancer
ID bmpocemdeedjgacehkbbhjjnjjhdpncd
공식 URL https://chromewebstore.google.com/detail/canopy-gui-enhancer/bmpocemdeedjgacehkbbhjjnjjhdpncd
설명 Enhance the standard CambiumNetworks Canopy Web GUI
파일 크기 299 KB
설치 횟수 3,277
현재 버전 1.9.1
최근 업데이트 2022-07-03
출시 날짜 2020-04-01
평점 5.00/5 총 21 개의 평점
개발자 Mattia Basone
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/mattiabasone/CanopyGUIEnhancer
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Canopy GUI Enhancer",
    "short_name": "CGE",
    "description": "Enhance the standard CambiumNetworks Canopy Web GUI",
    "version": "1.9.1",
    "version_name": "1.9.1",
    "author": "Mattia Basone ",
    "action": {
        "default_icon": "icons\/icon_144px.png",
        "default_popup": "popup\/index.html",
        "default_title": "Canopy GUI Enhancer - Edit settings"
    },
    "icons": {
        "512": "icons\/icon_512px.png",
        "192": "icons\/icon_192px.png",
        "144": "icons\/icon_144px.png",
        "96": "icons\/icon_96px.png",
        "72": "icons\/icon_72px.png",
        "48": "icons\/icon_48px.png"
    },
    "permissions": [
        "notifications",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_loader.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "cge.js",
                "css\/bootstrap-mini.css",
                "css\/gui.css",
                "css\/style.css",
                "css\/menu.css",
                "css\/themes\/dark.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "service_worker.js"
    }
}