Calendar Selector for Google Calendar

Save and restore groups of calendars selected

Calendar Selector for Google Calendarคืออะไร?

Calendar Selector for Google Calendar เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Bluenexa LLC และคุณลักษณะหลักของมันคือ "Save and restore groups of calendars selected"

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

screenshot

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

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

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

                        CHANGELOG:

Version 0.1.5
   - Bug fix: Breakage introduced by Google Calendar changing the page HTML structure

Version 0.1.4
   - Bug fix: Agenda view displays items correctly
   - Enhancement: Added a license file to the repository (MIT), and provided privacy policy and data practices in the store listing (no data is ever shared or leaves the user's browser).

See https://gitlab.com/bluenexa/google-calendar-selector for all version updates


DESCRIPTION:

This extension creates a set of buttons in the Google Chrome UI that allow you to easily create, save, and display groups of calendar presets. If you have many calendars and often need to switch between which calendars are shown (such as colleagues and teams), this extension is for you.

Your presets are stored in your local browser storage and sync across devices automatically (using Chrome's built in syncing mechanism).

Keyboard Shortcuts:
Press Ctrl+Alt and the highlighted key for the main functions (highlighted key is one of e, s, r, c, i, x, or p).


PRIVACY & SECURITY

Except Chrome's built-in sync mechanism, the extension functions completely offline in the browser and no data leaves the user's computer. Local storage in the browser is used to persist saved calendar groups and to sync saved groups across computers via Chrome's built-in sync mechanism (tied to the logged in Chrome user). All software is fully open source and available at https://gitlab.com/bluenexa/google-calendar-selector.


Built by the team at Bluenexa.                    

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

ชื่อ Calendar Selector for Google Calendar Calendar Selector for Google Calendar
ID nmliklikilkjommabacojbijjimlgjck
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/calendar-selector-for-goo/nmliklikilkjommabacojbijjimlgjck
คำอธิบาย Save and restore groups of calendars selected
ขนาดไฟล์ 878 KB
จำนวนการติดตั้ง 46,292
เวอร์ชันปัจจุบัน 0.1.5
อัปเดตครั้งล่าสุด 2022-12-08
วันที่เผยแพร่ 2019-08-28
คะแนน 4.40/5 รวมทั้งหมด 30 คะแนน
ผู้พัฒนา Bluenexa LLC
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://gitlab.com/bluenexa/google-calendar-selector
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Calendar Selector for Google Calendar",
    "version": "0.1.5",
    "manifest_version": 2,
    "description": "Save and restore groups of calendars selected",
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "icons\/cs128.png"
    },
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "lib\/vue\/vuetify_scoped.css"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/*"
            ],
            "css": [
                "lib\/mdl\/material.css",
                "src\/inject\/inject.css"
            ],
            "js": [
                "lib\/jquery\/jquery.min.js",
                "lib\/mdl\/material.js",
                "src\/calendar_manager.js",
                "lib\/vue\/vue.js",
                "lib\/vue\/vuetify.js",
                "lib\/mousetrap\/mousetrap.min.js",
                "lib\/mousetrap\/mousetrap-global-bind.min.js",
                "src\/inject\/inject.js"
            ]
        }
    ]
}