Time Cost Calculator
This extension can be used to calculate the cost of time spent in a meeting
Time Cost Calculator क्या है?
Time Cost Calculator Sunny Shahi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension can be used to calculate the cost of time spent in a meeting"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Time Cost Calculator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | Time Cost Calculator |
ID | mbkfdbnilfllooepngjaigpmnhfhecbd |
आधिकारिक URL | https://chromewebstore.google.com/detail/time-cost-calculator/mbkfdbnilfllooepngjaigpmnhfhecbd |
विवरण | This extension can be used to calculate the cost of time spent in a meeting |
फ़ाइल का आकार | 2.17 MB |
स्थापना संख्या | 184 |
वर्तमान संस्करण | 0.0.2 |
अंतिम अपडेट | 2021-02-16 |
प्रकाशन तिथि | 2021-02-10 |
डेवलपर | Sunny Shahi |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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" ] } ] } |