Habitica Random Daily Picker

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

Habitica Random Daily Pickerคืออะไร?

Habitica Random Daily Picker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://kylechur.ch และคุณลักษณะหลักของมันคือ "Allows you to choose one random daily task when using Habitica."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Habitica Random Daily Picker

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}