GearUp
GearUp
Was ist GearUp?
GearUp ist eine Chrome-Erweiterung, die von https://gearup.page entwickelt wurde, und ihr Hauptmerkmal ist "GearUp".
Erweiterungsscreenshots
GearUp-Erweiterungs-CRX-Datei herunterladen
Laden Sie GearUp-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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!
Grundlegende Informationen zur Erweiterung
Name | GearUp |
ID | pkmiajkoeblokidcibhcgjbbgobchaln |
Offizielle URL | https://chromewebstore.google.com/detail/gearup/pkmiajkoeblokidcibhcgjbbgobchaln |
Beschreibung | GearUp |
Dateigröße | 1.87 MB |
Installationsanzahl | 104 |
Aktuelle Version | 1.0.21 |
Letztes Update | 2023-09-01 |
Veröffentlichungsdatum | 2022-06-03 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | https://gearup.page |
[email protected] | |
Zahlungsart | in_app |
Erweiterungswebsite | https://gearup.page |
Hilfeseite URL | https://gearup.page |
Unterstützte Sprachen | 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\/*" ] } } |