Multiple Calendars Selector for Google Cal

Allows you to quickly display just the group of calendars that you want (on Google Calendar).

Multiple Calendars Selector for Google Calคืออะไร?

Multiple Calendars Selector for Google Cal เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://dessertventures.com และคุณลักษณะหลักของมันคือ "Allows you to quickly display just the group of calendars that you want (on Google Calendar)."

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        With this Google Calendar extension for Chrome, you'll be able to define presets of multiple calendars that can be displayed or hidden with one click. This way, you will be able to easily jump back and forth between different calendar sets.

Useful for viewing an entire team's availability, or previewing several conference rooms' load all at once.

Easily showing or hiding all calendars is also supported.

Hint: Consider combining this with the Event Merge for Google Calendar extension for cleaner visuals: https://chrome.google.com/webstore/detail/event-merge-for-google-ca/idehaflielbgpaokehlhidbjlehlfcep

Issues and Limitations
Feel free to reach out to us in case you encounter any issues. Current known limitations are:
-  Only one Google account per browser profile is supported. If you need to use several Google accounts, you can use several Chrome profiles for this: https://support.google.com/chrome/answer/2364824?hl=en&co=GENIE.Platform%3DDesktop
- Very large (ca. 50+) numbers of calendars cause issues, especially on slower machines

Disclaimer
No representations are made about the suitability of this software for any purpose. It is provided “as is” without express or implied warranty.

Privacy Policy
When you use this extension, your presets (including the names of your calendars) are stored in your browser’s local storage. They synchronise across your signed-in devices using Google Chrome’s cloud-based mechanism — in case you have enabled it. Your presets are not shared with anyone else and no further private data is uploaded to any servers. Only anonymous usage data (such as the event of opening the extension) is collected, using Google Analytics. You can opt out of this at any time by going to the extension’s options and unselecting the respective checkbox.

Homepage
Hosted at https://orestta.github.io/MultipleCalendarsSelector/

Credits
Icon by https://www.flaticon.com/authors/vectors-market

Author
Made by Orest Tarasiuk & Igor Tarasiuk at Dessert Ventures: https://dessertventures.com?ref=MCS                    

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

ชื่อ Multiple Calendars Selector for Google Cal Multiple Calendars Selector for Google Cal
ID dlfbgdklfofchbhpeimkpepfldhkpojn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/multiple-calendars-select/dlfbgdklfofchbhpeimkpepfldhkpojn
คำอธิบาย Allows you to quickly display just the group of calendars that you want (on Google Calendar).
ขนาดไฟล์ 108 KB
จำนวนการติดตั้ง 2,591
เวอร์ชันปัจจุบัน 1.15
อัปเดตครั้งล่าสุด 2023-07-02
วันที่เผยแพร่ 2019-11-25
คะแนน 3.95/5 รวมทั้งหมด 21 คะแนน
ผู้พัฒนา https://dessertventures.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://orestta.github.io/MultipleCalendarsSelector/
URL หน้าช่วยเหลือ https://www.dessertventures.com/?ref=MCS
URL หน้านโยบายความเป็นส่วนตัว https://orestta.github.io/MultipleCalendarsSelector
ภาษาที่รองรับ en,pl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Multiple Calendars Selector for Google Cal",
    "version": "1.15",
    "default_locale": "en",
    "description": "Allows you to quickly display just the group of calendars that you want (on Google Calendar).",
    "author": "Dessert Ventures, Orest Tarasiuk, Igor Tarasuk",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "page_action": {
        "default_popup": "src\/popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "permissions": [
        "activeTab",
        "tabs",
        "declarativeContent",
        "storage",
        "https:\/\/www.google-analytics.com\/"
    ],
    "options_page": "src\/options.html",
    "background": {
        "scripts": [
            "libs\/google-analytics-bundle.js",
            "src\/utils.js",
            "src\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "libs\/jquery-latest.min.js",
                "libs\/google-analytics-bundle.js",
                "src\/utils.js",
                "src\/main.js"
            ],
            "css": [
                "src\/stylesCalendar.css"
            ]
        }
    ]
}