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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension can be used to calculate the cost of time spent in a meeting"입니다.
확장 프로그램 스크린샷
Time Cost Calculator 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" ] } ] } |