Week Increment Google Calendar Custom View

Adds shortcuts to increment the custom week view for Google Calendar one week at a time.

Τι είναι το Week Increment Google Calendar Custom View;

Το Week Increment Google Calendar Custom View είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ghde developer, και η κύρια λειτουργία του είναι "Adds shortcuts to increment the custom week view for Google Calendar one week at a time.".

Στιγμιότυπα Επέκτασης

Λήψη αρχείου CRX της επέκτασης Week Increment Google Calendar Custom View

Λήψη αρχείων επέκτασης Week Increment Google Calendar Custom View σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Google Calendar lacks continuous scrolling for month view, making it difficult to work with events that cross between months. This extension aims to address this difficulty by allowing users to increment their view a week at a time in a multi-week view.

Press Ctrl+Down or Ctrl+Up to move 'down' or 'up' one week respectively. (Command+Down or Command+Up on macOS)

For this extension to work properly, you must set your Google Calendar's custom view to 2, 3, or 4 weeks (4 recommended).

This app works by modifying the URL of your tab. As such, the page is refreshed every time you increment by a week. Be aware that this means any unsaved changes to an event will be lost when you increment your view.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Week Increment Google Calendar Custom View Week Increment Google Calendar Custom View
ID mpdpfnabohjiinfoagikghmlnpnjmihg
Επίσημο URL https://chromewebstore.google.com/detail/week-increment-google-cal/mpdpfnabohjiinfoagikghmlnpnjmihg
Περιγραφή Adds shortcuts to increment the custom week view for Google Calendar one week at a time.
Μέγεθος Αρχείου 31.2 KB
Αριθμός Εγκαταστάσεων 574
Τρέχουσα Έκδοση 0.2
Τελευταία Ενημέρωση 2023-12-30
Ημερομηνία Δημοσίευσης 2020-05-14
Αξιολόγηση 3.83/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής ghde developer
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/jose01carrillo30/GCalendarViewExtension/issues
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Week Increment Google Calendar Custom View",
    "version": "0.2",
    "description": "Adds shortcuts to increment the custom week view for Google Calendar one week at a time.",
    "permissions": [
        "activeTab"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "images\/logo16.png",
        "32": "images\/logo32.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "commands": {
        "01-up-week": {
            "suggested_key": {
                "default": "Ctrl+Up"
            },
            "description": "Go backward one week in X-weeks custom view"
        },
        "02-down-week": {
            "suggested_key": {
                "default": "Ctrl+Down"
            },
            "description": "Go forward one week in X-weeks custom view"
        }
    },
    "manifest_version": 3
}