Event Merge for Google Calendar™

Chrome extension that visually merges the same event on multiple Google Calendars into one event.

O que é Event Merge for Google Calendar™?

Event Merge for Google Calendar™ é uma extensão do Chrome desenvolvida por Amy Ciavolino, e sua principal característica é "Chrome extension that visually merges the same event on multiple Google Calendars into one event.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Event Merge for Google Calendar™

Baixe arquivos de extensão Event Merge for Google Calendar™ no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        When using Google Calendar™ you may have one event on multiple calendars. For instance on your work and personal calendar, on your work calendar and your team's shared calendar, or on many co-work's calendars. These can clutter up your calendar and make it hard to read. This extension merges all those separate events into one event, and gives it strips with all the individual calendars' colors.

Report bugs here: https://github.com/imightbeamy/gcal-multical-event-merge/issues

Code on github: https://github.com/imightbeamy/gcal-multical-event-merge

Google Calendar™ is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.                    

Informações Básicas da Extensão

Nome Event Merge for Google Calendar™ Event Merge for Google Calendar™
ID idehaflielbgpaokehlhidbjlehlfcep
URL Oficial https://chromewebstore.google.com/detail/event-merge-for-google-ca/idehaflielbgpaokehlhidbjlehlfcep
Descrição Chrome extension that visually merges the same event on multiple Google Calendars into one event.
Tamanho do Arquivo 147 KB
Contagem de Instalações 73,505
Versão Atual 2.2.1
Última Atualização 2019-07-01
Data de Publicação 2019-07-01
Classificação 4.21/5 Total de 210 Avaliações
Desenvolvedor Amy Ciavolino
Tipo de Pagamento free
Site da Extensão https://amy.tech/
URL da Página de Ajuda https://github.com/imightbeamy/gcal-multical-event-merge/issues
Idiomas Suportados en,fr,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "2.2.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/calendar\/*",
                "https:\/\/calendar.google.com\/calendar\/*"
            ],
            "js": [
                "chroma.min.js",
                "events.user.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "https:\/\/www.google.com\/calendar\/*",
        "https:\/\/calendar.google.com\/*",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Toggle"
    },
    "icons": {
        "48": "icon.png"
    },
    "content_security_policy": "default-src 'self'",
    "manifest_version": 2
}