Custom Fields for Google calendar

Create custom fields in Google Calender.

Τι είναι το Custom Fields for Google calendar;

Το Custom Fields for Google calendar είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Tabgraf, και η κύρια λειτουργία του είναι "Create custom fields in Google Calender.".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Custom Fields for Google calendar

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

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

                        Use the Custom Fields add-on for Google Calendar to create and manage custom fields that does not exist in the regular Calendar interface.
Event organiser can add a variety of customised fields including Dropdown, Date Picker, Color Picker, Checkbox, Multiple Choice, Long/Short Text. 
Only those users who have edit access can change the custom fields. 
A simple User Interface to see and edit the fields. Admin can quickly add or remove a field from the calendar.                    

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

Όνομα Custom Fields for Google calendar Custom Fields for Google calendar
ID fgomfahnlnkadfcbnlbfddbdfhckbamm
Επίσημο URL https://chromewebstore.google.com/detail/custom-fields-for-google/fgomfahnlnkadfcbnlbfddbdfhckbamm
Περιγραφή Create custom fields in Google Calender.
Μέγεθος Αρχείου 214 KB
Αριθμός Εγκαταστάσεων 303
Τρέχουσα Έκδοση 2.1
Τελευταία Ενημέρωση 2024-03-04
Ημερομηνία Δημοσίευσης 2023-05-29
Αξιολόγηση 2.36/5 Συνολικά 11 Αξιολογήσεις
Προγραμματιστής Tabgraf
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://tabgraf.com/products/custom-fields-for-google-calender
URL της Σελίδας Πολιτικής Απορρήτου https://tabgraf.com/products/custom-fields-for-google-calender/privacy-policy
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Custom Fields for Google calendar",
    "description": "Create custom fields in Google Calender.",
    "version": "2.1",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/calendar\/u\/0\/r\/eventedit\/*",
                "https:\/\/calendar.google.com\/calendar\/*",
                "https:\/\/calendar.google.com\/calendar\/u\/0\/r",
                "https:\/\/calendar.google.com\/calendar\/u\/0\/r\/eventedit?state=%5Bnull%2Cnull%2Cnull%2Cnull%2C%5B13%5D%5D"
            ],
            "js": [
                "common\/env.js",
                "lib\/jquery.js",
                "lib\/pie-chart.js",
                "common\/utils\/utilities.js",
                "js\/auth.js",
                "js\/main.js",
                "js\/editor.js",
                "js\/viewer.js",
                "js\/payments\/subscription-info.js",
                "js\/payments\/subscription-expired.js",
                "js\/payments\/continue-without-saving.js"
            ],
            "css": [
                "css\/main.css",
                "css\/editor.css",
                "css\/viewer.css",
                "css\/input-fields.css"
            ]
        }
    ],
    "action": {
        "default_icon": "img\/icon.png",
        "default_popup": "pages\/popup.html"
    },
    "icons": {
        "48": "img\/icon.png",
        "128": "img\/icon.png"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/calender.google.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "img\/logo.png",
                "img\/icon.png",
                "img\/account.png",
                "img\/bookmark.png",
                "img\/icon.png",
                "img\/icon.png",
                "img\/btn-light.png",
                "img\/btn-dark.png",
                "img\/info.png",
                "img\/survey.png",
                "img\/feedbackimg.png",
                "img\/logo-white.svg"
            ],
            "matches": [
                "https:\/\/calendar.google.com\/*"
            ]
        }
    ]
}