Brick Hill Inbound Trade Notifier

Notifies you about incoming trades on Brick Hill.

什麼是Brick Hill Inbound Trade Notifier?

Brick Hill Inbound Trade Notifier是由Jayka開發的Chrome擴展程式,該擴展的主要功能是“Notifies you about incoming trades on Brick Hill.”。

擴展截圖

screenshot

下載Brick Hill Inbound Trade Notifier擴展crx文件

下載Brick Hill Inbound Trade Notifier擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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/
說明頁面URL https://www.brick-hill.com/trades/
隱私政策頁面URL 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"
    }
}