Twitter - Add Instant Reply

This extension adds an instant reply button, which you can set after clicking the extension's icon.

Twitter - Add Instant Reply क्या है?

Twitter - Add Instant Reply bongosart द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension adds an instant reply button, which you can set after clicking the extension's icon."।

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

screenshot
screenshot
screenshot
screenshot

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

crx प्रारूप में Twitter - Add Instant Reply एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This extension makes it a bit easier to reply to tweets with a default reply. 
Go to twitter.com and and click the icon. Add the text you want to use as a default reply and click save.
Open the tweet you want to answer to. You will see that a button is added to do an instant reply. Click the button and your default reply will be added to the reply section.                    

एक्सटेंशन की मूल जानकारी

नाम Twitter - Add Instant Reply Twitter - Add Instant Reply
ID fokpchplhnamghfkfekgefcjfinmlglg
आधिकारिक URL https://chromewebstore.google.com/detail/twitter-add-instant-reply/fokpchplhnamghfkfekgefcjfinmlglg
विवरण This extension adds an instant reply button, which you can set after clicking the extension's icon.
फ़ाइल का आकार 38.56 KB
स्थापना संख्या 25
वर्तमान संस्करण 1.0
अंतिम अपडेट 2018-06-20
प्रकाशन तिथि 2018-06-20
डेवलपर bongosart
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitter - Add Instant Reply",
    "description": "This extension adds an instant reply button, which you can set after clicking the extension's icon.",
    "version": "1.0",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Click to edit your reply message",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/",
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "contentScript.js",
                "addReplyButtonToScreen.js"
            ],
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "run_at": "document_end"
        }
    ]
}