Habitica Random Daily Picker
Allows you to choose one random daily task when using Habitica.
O que é Habitica Random Daily Picker?
Habitica Random Daily Picker é uma extensão do Chrome desenvolvida por https://kylechur.ch, e sua principal característica é "Allows you to choose one random daily task when using Habitica.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Habitica Random Daily Picker
Baixe arquivos de extensão Habitica Random Daily Picker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
-------- 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.
Informações Básicas da Extensão
Nome | Habitica Random Daily Picker |
ID | cdgjfohogpbbojhcmgiohfpmcdaaocoj |
URL Oficial | https://chromewebstore.google.com/detail/habitica-random-daily-pic/cdgjfohogpbbojhcmgiohfpmcdaaocoj |
Descrição | Allows you to choose one random daily task when using Habitica. |
Tamanho do Arquivo | 21.6 KB |
Contagem de Instalações | 28 |
Versão Atual | 1.0 |
Última Atualização | 2020-02-15 |
Data de Publicação | 2020-02-15 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | https://kylechur.ch |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://kylechur.ch |
Idiomas Suportados | 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" ] } ] } |