Quick Table for Gmail

Quickly insert and edit table in Gmail when composing or replying

Τι είναι το Quick Table for Gmail;

Το Quick Table for Gmail είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://workaddons.com, και η κύρια λειτουργία του είναι "Quickly insert and edit table in Gmail when composing or replying".

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

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Quick Table for Gmail

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

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

                        Make Email Tables Easier with "Quick table for gmail"
 
Sending emails with tables can be a time consuming and tedious process. You have to copy and paste content from an online form, spreadsheet, or document into your message, and if you need to make changes to the table, you have to do it all over again.
 
If you're looking for a simpler, more efficient way to add tables to your emails,  Quick table for gmail is just what you need. With just a few clicks, you can create a table that fits your needs and insert it into your message with the click of a button. And if you need to make changes, you can do them right in the message with our convenient editing function.
 
It is easy to use and completely free. Get started now and see how it can help you improve your email productivity.

Please refer to the following link for the privacy policy
https://www.workaddons.com/privacy                    

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

Όνομα Quick Table for Gmail Quick Table for Gmail
ID fmolkclgdnbgkcgofmgbhgjklmjkhnel
Επίσημο URL https://chromewebstore.google.com/detail/quick-table-for-gmail/fmolkclgdnbgkcgofmgbhgjklmjkhnel
Περιγραφή Quickly insert and edit table in Gmail when composing or replying
Μέγεθος Αρχείου 2.34 MB
Αριθμός Εγκαταστάσεων 823
Τρέχουσα Έκδοση 1.0.0
Τελευταία Ενημέρωση 2023-08-27
Ημερομηνία Δημοσίευσης 2023-01-30
Αξιολόγηση 5.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής https://workaddons.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.workaddons.com/products/quick-table-for-gmail
Διεύθυνση URL της Σελίδας Βοήθειας https://www.workaddons.com/
URL της Σελίδας Πολιτικής Απορρήτου https://www.workaddons.com/privacy
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Quickly insert and edit table in Gmail when composing or replying",
    "version": "1.0.0",
    "manifest_version": 3,
    "name": "Quick Table for Gmail",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/mail.google.com\/*"
    ],
    "background": {
        "service_worker": "service-worker.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "19": "icons\/19.png",
            "38": "icons\/38.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "libs\/jquery-3.2.1.min.js",
                "contentScript.js"
            ],
            "css": [
                "style.css",
                "libs\/css\/scope-bulma.min.css"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self';"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "*.js",
                "assets\/*",
                "libs\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}