Twitter - Add Instant Reply

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

Cos'è Twitter - Add Instant Reply?

Twitter - Add Instant Reply è un'estensione di Chrome sviluppata da bongosart, e la sua funzione principale è "This extension adds an instant reply button, which you can set after clicking the extension's icon.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Twitter - Add Instant Reply

Scarica i file di estensione Twitter - Add Instant Reply in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Twitter - Add Instant Reply Twitter - Add Instant Reply
ID fokpchplhnamghfkfekgefcjfinmlglg
URL Ufficiale https://chromewebstore.google.com/detail/twitter-add-instant-reply/fokpchplhnamghfkfekgefcjfinmlglg
Descrizione This extension adds an instant reply button, which you can set after clicking the extension's icon.
Dimensione del File 38.56 KB
Conteggio Installazioni 25
Versione Corrente 1.0
Ultimo Aggiornamento 2018-06-20
Data di Pubblicazione 2018-06-20
Sviluppatore bongosart
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}