Habitica Random Daily Picker

Allows you to choose one random daily task when using Habitica.

Wat is Habitica Random Daily Picker?

Habitica Random Daily Picker is een Chrome-extensie ontwikkeld door https://kylechur.ch, en de belangrijkste functie is "Allows you to choose one random daily task when using Habitica.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Habitica Random Daily Picker

Download Habitica Random Daily Picker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        --------
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.                    

Basisinformatie over de Extensie

Naam Habitica Random Daily Picker Habitica Random Daily Picker
ID cdgjfohogpbbojhcmgiohfpmcdaaocoj
Officiële URL https://chromewebstore.google.com/detail/habitica-random-daily-pic/cdgjfohogpbbojhcmgiohfpmcdaaocoj
Beschrijving Allows you to choose one random daily task when using Habitica.
Bestandsgrootte 21.6 KB
Aantal Installaties 28
Huidige Versie 1.0
Laatst Bijgewerkt 2020-02-15
Publicatiedatum 2020-02-15
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar https://kylechur.ch
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://kylechur.ch
Ondersteunde Talen 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"
            ]
        }
    ]
}