Canned Replies

Helps you manage canned replies in Gmail and everywhere else on the web

Canned Repliesคืออะไร?

Canned Replies เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tinacious Design และคุณลักษณะหลักของมันคือ "Helps you manage canned replies in Gmail and everywhere else on the web"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Canned Replies is a productivity tool that makes it quicker and easier to send the messages you send often. Use Canned Replies to create a set of commonly-used text snippets, and easily access these from within Gmail, or from the context menu and browser popup.

FEATURES

Gmail-optimized experience: Use Canned Replies from within your Gmail compose window. Canned Replies adds a button into the Gmail compose toolbar so you can quickly access your messages in context to the email you’re sending. Simply click on the desired message and it’ll be inserted into the email at your cursor.

Context Menu: Insert a text snippet via the context menu. Just right click (or control click) on any editable field and click the desired Canned Reply to insert it.

Browser bar popup: Canned Replies offers a popup window from your browser bar for all other use cases. Use the popup to copy the snippet onto your clipboard. This is useful if a website does not support native context menus, or if you’d like to paste your messages into an external application.

VERSIONS

3.0.0 – Upgrades to Chrome manifest V3 to align with Chrome's updated security practices. Also fixes the bug where the button stopped working in Gmail.

2.0.0 – A revamped Canned Replies popup that includes the ability to search for your messages. Also includes bug fixes and accessibility improvements.                    

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

ชื่อ Canned Replies Canned Replies
ID ddoijapfgfbaaehaegnddlbnmcbngkpi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/canned-replies/ddoijapfgfbaaehaegnddlbnmcbngkpi
คำอธิบาย Helps you manage canned replies in Gmail and everywhere else on the web
ขนาดไฟล์ 2.87 MB
จำนวนการติดตั้ง 12,580
เวอร์ชันปัจจุบัน 3.0.0
อัปเดตครั้งล่าสุด 2022-12-18
วันที่เผยแพร่ 2020-07-06
คะแนน 3.89/5 รวมทั้งหมด 57 คะแนน
ผู้พัฒนา Tinacious Design
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://cannedreplies.com
URL หน้าช่วยเหลือ https://tinaciousdesign.com/contact
URL หน้านโยบายความเป็นส่วนตัว https://privacy.tinaciousdesign.com
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Canned Replies",
    "version": "3.0.0",
    "author": "Tinacious Design",
    "description": "Helps you manage canned replies in Gmail and everywhere else on the web",
    "content_security_policy": {
        "extension_pages": "default-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; script-src 'self'; connect-src 'self' https:\/\/my.cannedreplies.com"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "index.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "clipboardWrite",
        "contextMenus"
    ],
    "host_permissions": [
        "https:\/\/mail.google.com\/*"
    ],
    "optional_permissions": [],
    "optional_host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "48": "img\/canned-replies-icon-48.png",
        "128": "img\/canned-replies-icon-128.png"
    },
    "action": {
        "default_icon": {
            "38": "img\/canned-replies-icon-38.png"
        },
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "img\/*.png",
                "angular.min.js.map",
                "index.html",
                "page-detector.js.map",
                "context-menu.js.map"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        },
        {
            "resources": [
                "pageWorld.js",
                "pageWorld.js.map"
            ],
            "matches": [
                "https:\/\/mail.google.com\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "insert-text-at-cursor.js",
                "pageWorld.js",
                "page-detector.js"
            ],
            "css": [
                "page-detector.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "insert-text-at-cursor.js",
                "context-menu.js"
            ],
            "run_at": "document_end"
        }
    ]
}