HumbleBundle Free Games
A simple extension that collects data from HubleBundle and notifies the user if there is a free product.
Что такое HumbleBundle Free Games?
HumbleBundle Free Games - это расширение Chrome, разработанное Ivan Angelov, и его основная функция - "A simple extension that collects data from HubleBundle and notifies the user if there is a free product.".
Снимки экрана расширения
Скачать файл CRX расширения HumbleBundle Free Games
Скачайте файлы расширений HumbleBundle Free Games в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension periodically checks the offers on the Humble Bundle's store and shows notifications if there are any free products available. The extension does NOT require Humble Bundle account and is not aware if the user have one as it communicates directly with their store API. For bug reports: https://gitlab.com/inferno16/HumbleBundle-Free-Games/issues
Основная информация о расширении
Название | |
ID | jfhjckfaaeolcgcfmfkjiggjhebigcfe |
Официальный URL | https://chromewebstore.google.com/detail/humblebundle-free-games/jfhjckfaaeolcgcfmfkjiggjhebigcfe |
Описание | A simple extension that collects data from HubleBundle and notifies the user if there is a free product. |
Размер файла | 28.5 KB |
Количество установок | 589 |
Текущая Версия | 1.3.3 |
Последнее Обновление | 2019-12-30 |
Дата публикации | 2019-12-30 |
Рейтинг | 5.00/5 Всего 3 оценок |
Разработчик | Ivan Angelov |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы помощи | https://gitlab.com/inferno16/HumbleBundle-Free-Games/issues |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "HumbleBundle Free Games", "version": "1.3.3", "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "author": "Ivan Angelov", "description": "A simple extension that collects data from HubleBundle and notifies the user if there is a free product.", "manifest_version": 2, "permissions": [ "alarms", "storage", "https:\/\/www.humblebundle.com\/" ], "options_ui": { "page": "html\/settings.html", "open_in_tab": false }, "browser_action": { "default_popup": "html\/popup.html", "default_title": "Click to view products" }, "background": { "scripts": [ "js\/background.js" ], "persistent": false } } |