Brick Hill Inbound Trade Notifier

Notifies you about incoming trades on Brick Hill.

Vad är Brick Hill Inbound Trade Notifier?

Brick Hill Inbound Trade Notifier är en Chrome-tillägg utvecklad av Jayka, och dess huvudfunktion är "Notifies you about incoming trades on Brick Hill.".

Tilläggsskärmbilder

screenshot

Ladda ner Brick Hill Inbound Trade Notifier-förlängningens CRX-fil

Ladda ner Brick Hill Inbound Trade Notifier-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Brick Hill Inbound Trade Notifier Brick Hill Inbound Trade Notifier
ID eggbbmkgellbegphlnnochjocogflphf
Officiell webbadress https://chromewebstore.google.com/detail/brick-hill-inbound-trade/eggbbmkgellbegphlnnochjocogflphf
Beskrivning Notifies you about incoming trades on Brick Hill.
Filstorlek 7.01 KB
Antal Installationer 40
Aktuell Version 0.1
Senast Uppdaterad 2022-03-31
Publiceringsdatum 2022-03-31
Betyg 1.00/5 Totalt 2 Betyg
Utvecklare Jayka
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.brick-hill.com/trades/
Hjälpsida URL https://www.brick-hill.com/trades/
URL till Sekretesspolicy Sidan https://www.brick-hill.com/terms
Stödda Språk 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"
    }
}