Vimcal

Fly through your calendar

Co to jest Vimcal?

Vimcal to rozszerzenie Chrome opracowane przez Vimcal Inc., a jego główną funkcją jest „Fly through your calendar”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Vimcal

Pobierz pliki rozszerzeń Vimcal w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Vimcal is the world’s fastest calendar, beautifully designed for the prosumer.

You’ll get everything a modern calendar should have: instant availability sharing, time zone conversions, hotkeys, and so much more. If you have a lot of meetings, Vimcal will save you hours every week while scheduling.

Prepare to meet you executive assistant, disguised as a calendar app.                    

Podstawowe informacje o rozszerzeniu

Nazwa Vimcal Vimcal
ID akopimcimmdmklcmegcflfidpfegngke
Oficjalny URL https://chrome.google.com/webstore/detail/vimcal/akopimcimmdmklcmegcflfidpfegngke
Opis Fly through your calendar
Rozmiar pliku 2.69 MB
Liczba instalacji 1,098
Aktualna Wersja 1.0.35
Ostatnia Aktualizacja 2022-08-21
Data Publikacji 2020-11-15
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper Vimcal Inc.
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://vimcal.com
Adres URL Strony Polityki Prywatności https://www.vimcal.com/privacy
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "Vimcal",
    "name": "Vimcal",
    "description": "Fly through your calendar",
    "version": "1.0.35",
    "manifest_version": 2,
    "homepage_url": "https:\/\/vimcal.com",
    "icons": {
        "16": "16x16.png",
        "48": "48x48.png",
        "128": "128x128.png"
    },
    "background": {
        "scripts": [
            "app\/background.js"
        ]
    },
    "commands": {
        "toggle_extension": {
            "suggested_key": {
                "default": "Ctrl+Shift+K"
            },
            "description": "Toggle extension"
        }
    },
    "browser_action": {
        "default_icon": {
            "16": "16x16.png",
            "32": "32x32.png"
        },
        "default_title": "Vimcal"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/*.vimcal.com\/*",
                "http:\/\/localhost\/*"
            ],
            "css": [
                "\/css\/root.css"
            ],
            "js": [
                "\/static\/js\/content.js"
            ],
            "all_frames": false,
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/calendar.google.com\/*"
            ],
            "css": [
                "\/css\/root.css"
            ],
            "js": [
                "\/static\/js\/content.js"
            ],
            "all_frames": false,
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "identity",
        "https:\/\/maps.googleapis.com\/*",
        "https:\/\/*.vimcal.com\/*",
        "webNavigation",
        "",
        "background",
        "history"
    ],
    "oauth2": {
        "client_id": "800204084418-p9v6g9o2t9lklvr3bdssqd5p20c1hagu.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/userinfo.email"
        ]
    },
    "web_accessible_resources": [
        "index.html",
        "\/static\/*"
    ],
    "content_security_policy": "default-src 'self' http:\/\/localhost:3000 https:\/\/localhost:3000 https:\/\/dev.vimcal.com https:\/\/dogfood.vimcal.com https:\/\/prod.vimcal.com https:\/\/www.googleapis.com https:\/\/maps.googleapis.com 'unsafe-eval'; script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk=' http:\/\/localhost:3000 https:\/\/localhost:3000 https:\/\/dev.vimcal.com https:\/\/dogfood.vimcal.com https:\/\/prod.vimcal.com https:\/\/www.googleapis.com https:\/\/maps.googleapis.com 'unsafe-eval'; connect-src 'self' http:\/\/localhost:3000 https:\/\/localhost:3000 https:\/\/dev.vimcal.com https:\/\/dogfood.vimcal.com https:\/\/prod.vimcal.com https:\/\/www.googleapis.com https:\/\/maps.googleapis.com 'unsafe-eval'; style-src * 'unsafe-inline' 'self' blob:; img-src 'self' https:\/\/vimcal-email-assets.s3-us-west-1.amazonaws.com\/ data:;"
}