NBN Availability Check

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

什么是NBN Availability Check?

NBN Availability Check是由Luke Prior开发的Chrome扩展程序,该扩展的主要功能是“Check what NBN technology is available at address on realestate.com.au & domain.com.au”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载NBN Availability Check扩展crx文件

下载NBN Availability Check扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 NBN Availability Check NBN Availability Check
ID opoaebfilfhfpadepddodjnjnofjnbdc
官方URL https://chromewebstore.google.com/detail/nbn-availability-check/opoaebfilfhfpadepddodjnjnofjnbdc
简介 Check what NBN technology is available at address on realestate.com.au & domain.com.au
文件大小 53.4 KB
安装次数 1,886
当前版本 0.0.0.11
更新时间 2022-04-08
上架时间 2022-01-28
评分 4.43/5 共14次评分
开发者 Luke Prior
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/LukePrior/nbn-availability-extension
帮助页面URL https://github.com/LukePrior/nbn-availability-extension
支持的语言 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"
    }
}