QuickReply

Simplify your copy/paste experience

QuickReplyとは何ですか?

QuickReplyはMaxim Zhukovによって開発されたChromeの拡張機能で、その主な機能は「Simplify your copy/paste experience」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

QuickReply拡張機能のCRXファイルをダウンロード

QuickReply拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        •  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.                    

拡張機能の基本情報

名前 QuickReply QuickReply
ID enngmhjfhandgjeccahinpmjfmllklki
公式URL https://chromewebstore.google.com/detail/quickreply/enngmhjfhandgjeccahinpmjfmllklki
説明 Simplify your copy/paste experience
ファイルサイズ 702 KB
インストール数 2,088
現在のバージョン 1.0.9
最終更新日 2020-07-31
公開日 2020-07-04
評価 4.55/5 合計 11 レビュー
開発者 Maxim Zhukov
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/FSou1/QuickReply
ヘルプページのURL https://github.com/FSou1/QuickReply/issues
対応言語 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'"
}