Habitica Random Daily Picker
Allows you to choose one random daily task when using Habitica.
Cos'è Habitica Random Daily Picker?
Habitica Random Daily Picker è un'estensione di Chrome sviluppata da https://kylechur.ch, e la sua funzione principale è "Allows you to choose one random daily task when using Habitica.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Habitica Random Daily Picker
Scarica i file di estensione Habitica Random Daily Picker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
-------- 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.
Informazioni di Base sull'Estensione
Nome | Habitica Random Daily Picker |
ID | cdgjfohogpbbojhcmgiohfpmcdaaocoj |
URL Ufficiale | https://chromewebstore.google.com/detail/habitica-random-daily-pic/cdgjfohogpbbojhcmgiohfpmcdaaocoj |
Descrizione | Allows you to choose one random daily task when using Habitica. |
Dimensione del File | 21.6 KB |
Conteggio Installazioni | 28 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2020-02-15 |
Data di Pubblicazione | 2020-02-15 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | https://kylechur.ch |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://kylechur.ch |
Lingue Supportate | 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" ] } ] } |