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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Check what NBN technology is available at address on realestate.com.au & domain.com.au"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में NBN Availability Check एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    }
}