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."입니다.
확장 프로그램 스크린샷
Habitica Random Daily Picker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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" ] } ] } |