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开发的Chrome扩展程序,该扩展的主要功能是“Allows you to choose one random daily task when using Habitica.”。

扩展截图

screenshot

下载Habitica Random Daily Picker扩展crx文件

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