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
Eメール [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"
            ]
        }
    ]
}