Quick Table for Gmail

Quickly insert and edit table in Gmail when composing or replying

什麼是Quick Table for Gmail?

Quick Table for Gmail是由https://workaddons.com開發的Chrome擴展程式,該擴展的主要功能是“Quickly insert and edit table in Gmail when composing or replying”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Quick Table for Gmail擴展crx文件

下載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
官方網址 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": [
                ""
            ]
        }
    ]
}