Treatstream

This extension allows the user to Add treats on Treatstream

Co to jest Treatstream?

Treatstream to rozszerzenie Chrome opracowane przez https://treatstream.com, a jego główną funkcją jest „This extension allows the user to Add treats on Treatstream”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Treatstream

Pobierz pliki rozszerzeń Treatstream w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Add Treats instantly to TreatStream through the majesty of your desktop computer, you can fill up your food menu in no time.                    

Podstawowe informacje o rozszerzeniu

Nazwa Treatstream Treatstream
ID bhdnfblkkeeiodimcaehninbcmiiahkm
Oficjalny URL https://chromewebstore.google.com/detail/treatstream/bhdnfblkkeeiodimcaehninbcmiiahkm
Opis This extension allows the user to Add treats on Treatstream
Rozmiar pliku 282 KB
Liczba instalacji 46,880
Aktualna Wersja 1.0.98
Ostatnia Aktualizacja 2023-11-14
Data Publikacji 2020-06-26
Ocena 3.90/5 Łącznie 10 Oceny
Deweloper https://treatstream.com
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://treatstream.com/faq
Adres URL Strony Polityki Prywatności https://treatstream.com/privacy
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Treatstream",
    "description": "This extension allows the user to Add treats on Treatstream",
    "version": "1.0.98",
    "background": {
        "scripts": [
            "jquery-1.10.2.js",
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "cookies",
        "",
        "webRequest"
    ],
    "browser_action": {
        "default_icon": "icon48.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery-1.10.2.js",
                "jquery-ui.min.js",
                "jquery.lazyload.min.js",
                "script.js"
            ],
            "run_at": "document_end"
        }
    ]
}