Time Cost Calculator
This extension can be used to calculate the cost of time spent in a meeting
Cos'è Time Cost Calculator?
Time Cost Calculator è un'estensione di Chrome sviluppata da Sunny Shahi, e la sua funzione principale è "This extension can be used to calculate the cost of time spent in a meeting".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Time Cost Calculator
Scarica i file di estensione Time Cost Calculator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Time Cost Calculator |
ID | mbkfdbnilfllooepngjaigpmnhfhecbd |
URL Ufficiale | https://chromewebstore.google.com/detail/time-cost-calculator/mbkfdbnilfllooepngjaigpmnhfhecbd |
Descrizione | This extension can be used to calculate the cost of time spent in a meeting |
Dimensione del File | 2.17 MB |
Conteggio Installazioni | 184 |
Versione Corrente | 0.0.2 |
Ultimo Aggiornamento | 2021-02-16 |
Data di Pubblicazione | 2021-02-10 |
Sviluppatore | Sunny Shahi |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |