QuickReply

Simplify your copy/paste experience

QuickReply란 무엇입니까?

QuickReply은(는) Maxim Zhukov에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simplify your copy/paste experience"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

QuickReply 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        •  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
이메일 [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'"
}