GearUp
GearUp
GearUp란 무엇입니까?
GearUp은(는) https://gearup.page에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "GearUp"입니다.
확장 프로그램 스크린샷
GearUp 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Giving wings to ClickUp, with extended features! Features: #1 Calculate grand total automatically for formula column See the auto calculated sum of formula field values at bottom of column in realtime #2 Graphical representation of status progress for status column See the auto generated graphical representation of status progress for benchmarking at granular level #3 Graphical representation of usage for dropdown column See the auto generated graphical representation of usage for dropdown option for insights Use cases: To have better insights at bottom of ListView while managing your various processes like Project management, Payroll, Inventory, Task monitoring, Budgeting, Planning, Sprints and anything you do with your ClickUp. If you have some suggestions, please feel free to reach out on [email protected]. Thanks!
확장 프로그램 기본 정보
이름 | GearUp |
ID | pkmiajkoeblokidcibhcgjbbgobchaln |
공식 URL | https://chromewebstore.google.com/detail/gearup/pkmiajkoeblokidcibhcgjbbgobchaln |
설명 | GearUp |
파일 크기 | 1.87 MB |
설치 횟수 | 104 |
현재 버전 | 1.0.21 |
최근 업데이트 | 2023-09-01 |
출시 날짜 | 2022-06-03 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | https://gearup.page |
이메일 | [email protected] |
결제 유형 | in_app |
확장 프로그램 웹 사이트 | https://gearup.page |
도움말 페이지 URL | https://gearup.page |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "GearUp", "version": "1.0.21", "name": "GearUp", "manifest_version": 3, "background": { "service_worker": "serviceWorker.js" }, "icons": { "16": "images\/logo.png", "48": "images\/logo.png", "128": "images\/logo.png" }, "action": { "default_title": "GearUp", "default_popup": "index.html", "default_icon": "images\/logo.png" }, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/app.clickup.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/app.clickup.com\/*" ], "all_frames": false, "run_at": "document_idle", "js": [ "\/js\/app.js" ], "css": [ "\/css\/app.css" ] } ], "externally_connectable": { "matches": [ "https:\/\/app.clickup.com\/*", "https:\/\/app.gearup.com\/*" ] } } |