Treatstream

This extension allows the user to Add treats on Treatstream

Что такое Treatstream?

Treatstream - это расширение Chrome, разработанное https://treatstream.com, и его основная функция - "This extension allows the user to Add treats on Treatstream".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Treatstream

Скачайте файлы расширений Treatstream в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название Treatstream Treatstream
ID bhdnfblkkeeiodimcaehninbcmiiahkm
Официальный URL https://chromewebstore.google.com/detail/treatstream/bhdnfblkkeeiodimcaehninbcmiiahkm
Описание This extension allows the user to Add treats on Treatstream
Размер файла 282 KB
Количество установок 46,880
Текущая Версия 1.0.98
Последнее Обновление 2023-11-14
Дата публикации 2020-06-26
Рейтинг 3.90/5 Всего 10 оценок
Разработчик https://treatstream.com
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://treatstream.com/faq
URL страницы политики конфиденциальности https://treatstream.com/privacy
Поддерживаемые языки 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"
        }
    ]
}