Treatstream

This extension allows the user to Add treats on Treatstream

Cos'è Treatstream?

Treatstream è un'estensione di Chrome sviluppata da https://treatstream.com, e la sua funzione principale è "This extension allows the user to Add treats on Treatstream".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Treatstream

Scarica i file di estensione Treatstream in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Treatstream Treatstream
ID bhdnfblkkeeiodimcaehninbcmiiahkm
URL Ufficiale https://chromewebstore.google.com/detail/treatstream/bhdnfblkkeeiodimcaehninbcmiiahkm
Descrizione This extension allows the user to Add treats on Treatstream
Dimensione del File 282 KB
Conteggio Installazioni 46,880
Versione Corrente 1.0.98
Ultimo Aggiornamento 2023-11-14
Data di Pubblicazione 2020-06-26
Valutazione 3.90/5 Totale 10 Valutazioni
Sviluppatore https://treatstream.com
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://treatstream.com/faq
URL della Pagina della Politica sulla Privacy https://treatstream.com/privacy
Lingue Supportate 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"
        }
    ]
}