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
官方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/
帮助页面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"
    }
}