Brick Hill Inbound Trade Notifier

Notifies you about incoming trades on Brick Hill.

ما هو Brick Hill Inbound Trade Notifier؟

Brick Hill Inbound Trade Notifier هو إضافة Chrome تم تطويرها بواسطة Jayka، والميزة الرئيسية لها هي "Notifies you about incoming trades on Brick Hill.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Brick Hill Inbound Trade Notifier

قم بتنزيل ملفات الامتداد Brick Hill Inbound Trade Notifier بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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

معلومات أساسية عن التمديد

الاسم Brick Hill Inbound Trade Notifier Brick Hill Inbound Trade Notifier
ID eggbbmkgellbegphlnnochjocogflphf
عنوان URL الرسمي https://chromewebstore.google.com/detail/brick-hill-inbound-trade/eggbbmkgellbegphlnnochjocogflphf
الوصف Notifies you about incoming trades on Brick Hill.
حجم الملف 7.01 KB
عدد التثبيتات 40
النسخة الحالية 0.1
آخر تحديث 2022-03-31
تاريخ النشر 2022-03-31
تقييم 1.00/5 مجموع تقييمات 2
المطور Jayka
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://www.brick-hill.com/trades/
عنوان صفحة المساعدة https://www.brick-hill.com/trades/
عنوان صفحة سياسة الخصوصية https://www.brick-hill.com/terms
اللغات المدعومة 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"
    }
}