Event Durations for Google Calendar

Shows event durations on Google Calendar.

Event Durations for Google Calendarคืออะไร?

Event Durations for Google Calendar เป็นส่วนขยายของ Chrome ที่พัฒนาโดย [email protected] และคุณลักษณะหลักของมันคือ "Shows event durations on Google Calendar."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Event Durations for Google Calendar

ดาวน์โหลดไฟล์ส่วนขยาย Event Durations for Google Calendar ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        ** Google sometimes changes the design of their calendar, which can disrupt this extension. If you are having issues, please don't hesitate to email [email protected] **

Calculates and displays event durations on the weekly view of Google Calendar events. Manage your time better and quickly create events with the desired duration.

Version 2.1.3 adds support for Russian.

Version 2.1.0 and above:
- Includes a new option to display durations in a "decimal hours" format ("2.5 hours") instead of the default "hours + minutes" format ("2h 30m"). You can set this option by clicking the extension icon.
- Fixes a bug that several users reported, where short events with locations would cause durations not to show up on other events.

If you are having problems with this extension, please email [email protected].

Supported Languages:
* azərbaycan
* Bahasa Indonesia
* Català
* Dansk
* Deutsch
* English (UK)
* English (US)
* Español
* euskara
* Filipino
* Français
* Italiano
* Nederlands
* Polski
* Português (Brasil)
* Português (Portugal)
* Română
* Svenska
* Türkçe
* 中文 (香港)
* 中文(简体)
* 中文(繁體)
* 日本語
* 한국어
* русский

See https://git.io/fx9SF for full release notes.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Event Durations for Google Calendar Event Durations for Google Calendar
ID elfoibhncineionfonglaickdliaikmj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/event-durations-for-googl/elfoibhncineionfonglaickdliaikmj
คำอธิบาย Shows event durations on Google Calendar.
ขนาดไฟล์ 148 KB
จำนวนการติดตั้ง 7,242
เวอร์ชันปัจจุบัน 2.1.7
อัปเดตครั้งล่าสุด 2024-02-27
วันที่เผยแพร่ 2020-05-04
คะแนน 4.68/5 รวมทั้งหมด 117 คะแนน
ผู้พัฒนา [email protected]
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Event Durations for Google Calendar",
    "description": "Shows event durations on Google Calendar.",
    "version": "2.1.7",
    "browser_action": {
        "default_icon": "icons\/icon16.png"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "libraries\/jquery-3.1.1.min.js",
                "libraries\/lodash.core.min.js",
                "libraries\/moment.js",
                "libraries\/moment-duration-format.js",
                "lib\/calculate-diff.js",
                "lib\/format-diff.js",
                "content.js"
            ],
            "matches": [
                "https:\/\/calendar.google.com\/*"
            ]
        }
    ],
    "options_page": "options\/options.html",
    "permissions": [
        "storage"
    ]
}