QuickReply

Simplify your copy/paste experience

QuickReply क्या है?

QuickReply Maxim Zhukov द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Simplify your copy/paste experience"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में QuickReply एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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'"
}