Hide morning in Calendar

Hide morning hours on your Google Calendar to stop wasting space on your screen for empty hours.

Τι είναι το Hide morning in Calendar;

Το Hide morning in Calendar είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.raphaelschaad.com, και η κύρια λειτουργία του είναι "Hide morning hours on your Google Calendar to stop wasting space on your screen for empty hours.".

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

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Hide morning in Calendar

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

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

                        When's the last time you had a meeting at 3am? Empty hours are irrelevant and waste space on your screen. This extension lets you minimize the range of hours in the morning on your Google Calendar, so you only see the title of events during those hours.

How does it work?
1. Click “Add to Chrome” to install the extension for free from the official Chrome Web Store.
2. Reload or open your Google Calendar in Chrome: https://www.google.com/calendar
3. In the Day/Week/3 or 7 days view, you will notice a new small gray handle at the top of the times on the left. Drag it down to hide morning hours.
If you want to show those hours again, simply click the gray hidden hours at the top of the times on the left.

Who is it for?
When you use your calendar for work or school, you can set a range of working hours in the day that fits your schedule and remove the unnecessary white space during the times you're out of office or sleeping.

This extension currently works if the language of Google Calendar is set to English (US). Support for more languages coming soon.

Feel free to ask us any questions or tell us what you think. Contact at www.raphaelschaad.com.
Thanks for giving us a rating, if you like your clean new calendar look.                    

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

Όνομα Hide morning in Calendar Hide morning in Calendar
ID oaikandahkibeihnampagmegnpfefhca
Επίσημο URL https://chromewebstore.google.com/detail/hide-morning-in-calendar/oaikandahkibeihnampagmegnpfefhca
Περιγραφή Hide morning hours on your Google Calendar to stop wasting space on your screen for empty hours.
Μέγεθος Αρχείου 62.63 KB
Αριθμός Εγκαταστάσεων 29,268
Τρέχουσα Έκδοση 0.1.9
Τελευταία Ενημέρωση 2021-08-10
Ημερομηνία Δημοσίευσης 2019-11-25
Αξιολόγηση 3.84/5 Συνολικά 128 Αξιολογήσεις
Προγραμματιστής https://www.raphaelschaad.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://raphaelschaad.github.io/factsheets/
Διεύθυνση URL της Σελίδας Βοήθειας https://raphaelschaad.github.io/factsheets/
URL της Σελίδας Πολιτικής Απορρήτου https://raphaelschaad.com/privacy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hide morning in Calendar",
    "description": "Hide morning hours on your Google Calendar to stop wasting space on your screen for empty hours.",
    "version": "0.1.9",
    "permissions": [],
    "background": {
        "scripts": [
            "src\/background\/externals\/amplitudeSnippet.js",
            "src\/legacy\/impure.js",
            "src\/background\/bgStateManager.js",
            "src\/background\/bgMain.js"
        ]
    },
    "content_scripts": [
        {
            "css": [
                "src\/tadaSleep.css"
            ],
            "js": [
                "src\/legacy\/pure.js",
                "src\/legacy\/impure.js",
                "src\/content\/dom\/find\/gcalElements.js",
                "src\/content\/dom\/find\/tadaElements.js",
                "src\/content\/dom\/domManipulation.js",
                "src\/content\/dom\/domAnalysis.js",
                "src\/content\/dom\/tadaElems.js",
                "src\/content\/dataManipulation.js",
                "src\/content\/micro\/cStateManager.js",
                "src\/content\/micro\/gatherEssentials.js",
                "src\/content\/micro\/environmentWatchdog.js",
                "src\/content\/cMain.js"
            ],
            "matches": [
                "https:\/\/calendar.google.com\/calendar\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "browser_action": {
        "default_popup": "src\/browserAction\/browserAction.html",
        "css": "src\/browserAction\/browserAction.css",
        "default_icon": {
            "16": "images\/bedtime-icon-16.png",
            "32": "images\/bedtime-icon-32.png",
            "64": "images\/bedtime-icon-64.png",
            "128": "images\/bedtime-icon-128.png"
        }
    },
    "icons": {
        "16": "images\/bedtime-icon-16.png",
        "32": "images\/bedtime-icon-32.png",
        "64": "images\/bedtime-icon-64.png",
        "128": "images\/bedtime-icon-128.png"
    },
    "web_accessible_resources": [
        "images\/*"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self';"
}