NBN Availability Check

Check what NBN technology is available at address on realestate.com.au & domain.com.au

NBN Availability Check là gì?

NBN Availability Check là một tiện ích mở rộng Chrome được phát triển bởi Luke Prior, và tính năng chính của nó là "Check what NBN technology is available at address on realestate.com.au & domain.com.au".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng NBN Availability Check 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

                        This simple extension can automatically load NBN availability for properties on realestate.com.au & domain.com.au information including technology type, maximum line speed, and co-existance status if available.

Supported Sites

- Realestate.com.au
- Domain.com.au
+ 8 other sites

Supported Networks

- NBN
- OptiComm
- LBNCo
+ more networks

You can find the full list of supported sites and networks here: https://github.com/LukePrior/nbn-availability-extension#supported-sites                    

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

Tên NBN Availability Check NBN Availability Check
ID opoaebfilfhfpadepddodjnjnofjnbdc
URL Chính Thức https://chromewebstore.google.com/detail/nbn-availability-check/opoaebfilfhfpadepddodjnjnofjnbdc
Mô tả Check what NBN technology is available at address on realestate.com.au & domain.com.au
Kích Thước Tệp 53.4 KB
Số Lần Cài Đặt 1,886
Phiên Bản Hiện Tại 0.0.0.11
Cập Nhật Lần Cuối 2022-04-08
Ngày Phát Hành 2022-01-28
Đánh Giá 4.43/5 Tổng số 14 Đánh Giá
Nhà Phát Triển Luke Prior
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/LukePrior/nbn-availability-extension
URL Trang Trợ Giúp https://github.com/LukePrior/nbn-availability-extension
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "NBN Availability Check",
    "description": "Check what NBN technology is available at address on realestate.com.au & domain.com.au",
    "version": "0.0.0.11",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/icon16.png",
            "32": "\/images\/icon32.png",
            "48": "\/images\/icon48.png",
            "128": "\/images\/icon128.png"
        }
    },
    "icons": {
        "16": "\/images\/icon16.png",
        "32": "\/images\/icon32.png",
        "48": "\/images\/icon48.png",
        "128": "\/images\/icon128.png"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.realestate.com.au\/*",
                "https:\/\/www.domain.com.au\/*",
                "https:\/\/www.realestateview.com.au\/*",
                "https:\/\/www.onthehouse.com.au\/*",
                "https:\/\/www.allhomes.com.au\/*",
                "https:\/\/www.rent.com.au\/*",
                "https:\/\/reiwa.com.au\/*",
                "https:\/\/www.homely.com.au\/*",
                "https:\/\/www.realcommercial.com.au\/*",
                "https:\/\/www.commercialrealestate.com.au\/*"
            ],
            "run_at": "document_end",
            "js": [
                "jquery.js",
                "common.js",
                "main.js"
            ],
            "css": [
                "main.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "options.html"
            ],
            "matches": [
                ""
            ]
        },
        {
            "resources": [
                "images\/loading.svg"
            ],
            "matches": [
                "https:\/\/www.realestate.com.au\/*",
                "https:\/\/www.domain.com.au\/*",
                "https:\/\/www.realestateview.com.au\/*",
                "https:\/\/www.onthehouse.com.au\/*",
                "https:\/\/www.allhomes.com.au\/*",
                "https:\/\/www.rent.com.au\/*",
                "https:\/\/reiwa.com.au\/*",
                "https:\/\/www.homely.com.au\/*",
                "https:\/\/www.realcommercial.com.au\/*",
                "https:\/\/www.commercialrealestate.com.au\/*"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "background": {
        "service_worker": "background.js"
    }
}