Habitica Random Daily Picker

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

Habitica Random Daily Picker क्या है?

Habitica Random Daily Picker https://kylechur.ch द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows you to choose one random daily task when using Habitica."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Habitica Random Daily Picker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        --------
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 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"
            ]
        }
    ]
}