Time Cost Calculator
This extension can be used to calculate the cost of time spent in a meeting
Co to jest Time Cost Calculator?
Time Cost Calculator to rozszerzenie Chrome opracowane przez Sunny Shahi, a jego główną funkcją jest „This extension can be used to calculate the cost of time spent in a meeting”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Time Cost Calculator
Pobierz pliki rozszerzeń Time Cost Calculator w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
The chrome extension enables users to view the meeting cost based upon the number of attendees accepting the invites and the duration of the meeting. The script parses the duration and meeting attendee numbers from the DOM after the html has been loaded in the chrome browser and calculates and displays the cost which is set by the administator.
Podstawowe informacje o rozszerzeniu
Nazwa | Time Cost Calculator |
ID | mbkfdbnilfllooepngjaigpmnhfhecbd |
Oficjalny URL | https://chromewebstore.google.com/detail/time-cost-calculator/mbkfdbnilfllooepngjaigpmnhfhecbd |
Opis | This extension can be used to calculate the cost of time spent in a meeting |
Rozmiar pliku | 2.17 MB |
Liczba instalacji | 184 |
Aktualna Wersja | 0.0.2 |
Ostatnia Aktualizacja | 2021-02-16 |
Data Publikacji | 2021-02-10 |
Deweloper | Sunny Shahi |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Time Cost Calculator", "version": "0.0.2", "manifest_version": 2, "description": "This extension can be used to calculate the cost of time spent in a meeting", "homepage_url": "https:\/\/www.iterable.com", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "storage" ], "default_locale": "en", "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/calendar\/*" ], "js": [ "src\/inject\/inject.js" ] } ] } |