Habitica Random Daily Picker
Allows you to choose one random daily task when using Habitica.
Что такое Habitica Random Daily Picker?
Habitica Random Daily Picker - это расширение Chrome, разработанное https://kylechur.ch, и его основная функция - "Allows you to choose one random daily task when using Habitica.".
Снимки экрана расширения
Скачать файл CRX расширения Habitica Random Daily Picker
Скачайте файлы расширений Habitica Random Daily Picker в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
-------- This lets you pick a random daily when on the Habitica main page and logged in. This applies to the browser version only. Click the button to make it work. 1) It will choose dailies from 'All', 'Due', or 'Not Due' based on which you have selected. 2) If there are no dailies available in your selection, clicking the button will do nothing. 3) If you have a lot of tasks, Habitica can be slow, so this app can be slow.
Основная информация о расширении
Название | Habitica Random Daily Picker |
ID | cdgjfohogpbbojhcmgiohfpmcdaaocoj |
Официальный URL | https://chromewebstore.google.com/detail/habitica-random-daily-pic/cdgjfohogpbbojhcmgiohfpmcdaaocoj |
Описание | Allows you to choose one random daily task when using Habitica. |
Размер файла | 21.6 KB |
Количество установок | 28 |
Текущая Версия | 1.0 |
Последнее Обновление | 2020-02-15 |
Дата публикации | 2020-02-15 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | https://kylechur.ch |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://kylechur.ch |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Habitica Random Daily Picker", "version": "1.0", "description": "Allows you to choose one random daily task when using Habitica.", "icons": { "16": "icon16.png", "19": "icon19.png", "38": "icon38.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "tabs", "https:\/\/habitica.com\/" ], "background": { "scripts": [ "background.js" ] }, "browser_action": [], "content_scripts": [ { "matches": [ "https:\/\/habitica.com\/" ], "js": [ "content.js" ] } ] } |