Google Calendar Quick Duplicate

A simple Chrome Extension to quickly duplicate events on Google Calendar.

What is Google Calendar Quick Duplicate?

Google Calendar Quick Duplicate is a Chrome extension developed by https://fabio.sangregorio.dev, and its main feature is "A simple Chrome Extension to quickly duplicate events on Google Calendar.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Google Calendar Quick Duplicate Extension CRX File

Download Google Calendar Quick Duplicate extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension adds a "Duplicate event" icon on the event preview card, letting you quickly duplicate it with one single click.

You can also quickly duplicate an event by holding alt (option on Mac OS) while clicking the event.

---

Source code: https://github.com/fabiosangregorio/google-calendar-quick-duplicate                    

Extension Basic Information

Name Google Calendar Quick Duplicate Google Calendar Quick Duplicate
ID belnijodgolpgmpahmdkjbjehbobnfpd
Official URL https://chromewebstore.google.com/detail/google-calendar-quick-dup/belnijodgolpgmpahmdkjbjehbobnfpd
Description A simple Chrome Extension to quickly duplicate events on Google Calendar.
File Size 73.65 KB
Installation Count 10,110
Current Version 1.1.3
Last Updated 2023-12-04
Publish Date 2020-07-04
Rating 4.14/5 Total 74 Ratings
Developer https://fabio.sangregorio.dev
Email [email protected]
Payment Type free
Extension Website https://github.com/fabiosangregorio/google-calendar-quick-duplicate
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Calendar Quick Duplicate",
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "version": "1.1.3",
    "description": "A simple Chrome Extension to quickly duplicate events on Google Calendar.",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/calendar\/*"
            ],
            "js": [
                "app.js"
            ]
        }
    ]
}