Treatstream

This extension allows the user to Add treats on Treatstream

Hvad er Treatstream?

Treatstream er en Chrome-udvidelse udviklet af https://treatstream.com, og dens hovedfunktion er "This extension allows the user to Add treats on Treatstream".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Treatstream-udvidelses-CRX-fil

Download Treatstream-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Treatstream Treatstream
ID bhdnfblkkeeiodimcaehninbcmiiahkm
Officiel URL https://chromewebstore.google.com/detail/treatstream/bhdnfblkkeeiodimcaehninbcmiiahkm
Beskrivelse This extension allows the user to Add treats on Treatstream
Filstørrelse 282 KB
Antal Installationer 46,880
Nuværende Version 1.0.98
Senest Opdateret 2023-11-14
Udgivelsesdato 2020-06-26
Bedømmelse 3.90/5 Samlet 10 Bedømmelser
Udvikler https://treatstream.com
E-mail [email protected]
Betalingsmetode free
Hjælpeside-URL https://treatstream.com/faq
URL til Fortrolighedspolitik Side https://treatstream.com/privacy
Understøttede Sprog 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"
        }
    ]
}