GMail Templates

Salve modelos de email para serem usados e enviados através do GMail

GMail Templatesคืออะไร?

GMail Templates เป็นส่วนขยายของ Chrome ที่พัฒนาโดย alljs และคุณลักษณะหลักของมันคือ "Salve modelos de email para serem usados e enviados através do GMail"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GMail Templates

ดาวน์โหลดไฟล์ส่วนขยาย GMail Templates ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        How to use:

- Click on "New Template" (shortcut key 'n');
- Insert the email template;
- Save the template (shortcut key 'ctrl + s');
- Click the button to insert the template into GMail.

Attention:

To allow insertion directly into the GMail sending fields, it is necessary to set Chrome as the default browser for opening emails. In addition, it is necessary to set the permission to open email links by Google, following the steps below:

- Open GMail normally;
- In the URL address field, on the right side, an icon will appear that looks like two intersected diamonds;
- Click on the icon and choose the option "Allow".

The extension does NOT automatically send emails. It just "inserts" the template to be used in sending messages from GMail, allowing editing both in extension and in GMail. Sending emails occurs only in GMail.

Templates are saved in the user's browser storage space. The extension has functions to export / import the templates to a .txt file (the formatting of the email can only be seen in the browser itself after importing.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ GMail Templates GMail Templates
ID okjngcfenogaaiomeeoopepplmaoiemd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/gmail-templates/okjngcfenogaaiomeeoopepplmaoiemd
คำอธิบาย Salve modelos de email para serem usados e enviados através do GMail
ขนาดไฟล์ 119 KB
จำนวนการติดตั้ง 257
เวอร์ชันปัจจุบัน 1.0.5
อัปเดตครั้งล่าสุด 2020-08-16
วันที่เผยแพร่ 2020-08-04
ผู้พัฒนา alljs
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en,pt-BR
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "version": "1.0.5",
    "default_locale": "pt_BR",
    "description": "__MSG_appDesc__",
    "icons": {
        "36": "icons\/gmail-36.png"
    },
    "permissions": [
        "storage",
        "*:\/\/mail.google.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/gmail-36.png",
        "default_title": "__MSG_appName__"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "js": [
                "index.js"
            ]
        }
    ],
    "content_security_policy": "script-src https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/materialize\/1.0.0\/js\/materialize.min.js https:\/\/cdn.quilljs.com\/1.3.6\/quill.min.js https:\/\/vuejs.org\/js\/vue.min.js 'self' 'unsafe-eval'; object-src 'self'"
}