QuickReply

Simplify your copy/paste experience

QuickReply là gì?

QuickReply là một tiện ích mở rộng Chrome được phát triển bởi Maxim Zhukov, và tính năng chính của nó là "Simplify your copy/paste experience".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng QuickReply

Tải xuống các tệp mở rộng QuickReply dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        •  Annoyed by copying and pasting the same text from time to time?
•  Tired of storing notes in files and sticky notes?
•  Want to personalize your messages quickly?

✔️ Let us help you to solve these issues once and for all.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên QuickReply QuickReply
ID enngmhjfhandgjeccahinpmjfmllklki
URL Chính Thức https://chromewebstore.google.com/detail/quickreply/enngmhjfhandgjeccahinpmjfmllklki
Mô tả Simplify your copy/paste experience
Kích Thước Tệp 702 KB
Số Lần Cài Đặt 2,088
Phiên Bản Hiện Tại 1.0.9
Cập Nhật Lần Cuối 2020-07-31
Ngày Phát Hành 2020-07-04
Đánh Giá 4.55/5 Tổng số 11 Đánh Giá
Nhà Phát Triển Maxim Zhukov
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/FSou1/QuickReply
URL Trang Trợ Giúp https://github.com/FSou1/QuickReply/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "QuickReply",
    "description": "Simplify your copy\/paste experience",
    "version": "1.0.9",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        "storage",
        "clipboardRead",
        "clipboardWrite"
    ],
    "browser_action": {
        "default_title": "Options",
        "default_icon": "img\/icon48.png"
    },
    "options_page": "index.html?#\/options",
    "content_scripts": [
        {
            "js": [
                "contentPage.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "scripts": [
            "backgroundPage.js"
        ]
    },
    "commands": {
        "paste-reply-#1": {
            "suggested_key": {
                "default": "Alt+1",
                "mac": "Alt+1"
            },
            "description": "Paste the first reply"
        },
        "paste-reply-#2": {
            "suggested_key": {
                "default": "Alt+2",
                "mac": "Alt+2"
            },
            "description": "Paste the second reply"
        },
        "paste-reply-#3": {
            "suggested_key": {
                "default": "Alt+3",
                "mac": "Alt+3"
            },
            "description": "Paste the third reply"
        },
        "paste-reply-#4": {
            "description": "Paste the fourth reply"
        },
        "paste-reply-#5": {
            "description": "Paste the fifth reply"
        }
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
}