Brick Hill Inbound Trade Notifier

Notifies you about incoming trades on Brick Hill.

Apa itu Brick Hill Inbound Trade Notifier?

Brick Hill Inbound Trade Notifier adalah ekstensi Chrome yang dikembangkan oleh Jayka, dan fitur utamanya adalah "Notifies you about incoming trades on Brick Hill.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Brick Hill Inbound Trade Notifier

Unduh file ekstensi Brick Hill Inbound Trade Notifier dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        Helps make trading on Brick-hill.com better.
made by:
 Enderspearl184#1841
https://www.brick-hill.com/user/305122                    

Informasi Dasar Ekstensi

Nama Brick Hill Inbound Trade Notifier Brick Hill Inbound Trade Notifier
ID eggbbmkgellbegphlnnochjocogflphf
URL Resmi https://chromewebstore.google.com/detail/brick-hill-inbound-trade/eggbbmkgellbegphlnnochjocogflphf
Deskripsi Notifies you about incoming trades on Brick Hill.
Ukuran File 7.01 KB
Jumlah Instalasi 40
Versi Saat Ini 0.1
Terakhir Diperbarui 2022-03-31
Tanggal Publikasi 2022-03-31
Penilaian 1.00/5 Total 2 Penilaian
Pengembang Jayka
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://www.brick-hill.com/trades/
URL Halaman Bantuan https://www.brick-hill.com/trades/
URL Halaman Kebijakan Privasi https://www.brick-hill.com/terms
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Brick Hill Inbound Trade Notifier",
    "description": "Notifies you about incoming trades on Brick Hill.",
    "version": "0.1",
    "host_permissions": [
        "*:\/\/*.brick-hill.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.brick-hill.com\/*"
            ],
            "js": [
                "getData.js"
            ]
        }
    ],
    "background": {
        "service_worker": "main.js"
    },
    "action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "cookies",
        "storage",
        "alarms",
        "notifications"
    ],
    "icons": {
        "100": "icon.png"
    }
}