Twitter - Add Instant Reply

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

Vad är Twitter - Add Instant Reply?

Twitter - Add Instant Reply är en Chrome-tillägg utvecklad av bongosart, och dess huvudfunktion är "This extension adds an instant reply button, which you can set after clicking the extension's icon.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Twitter - Add Instant Reply-förlängningens CRX-fil

Ladda ner Twitter - Add Instant Reply-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Twitter - Add Instant Reply Twitter - Add Instant Reply
ID fokpchplhnamghfkfekgefcjfinmlglg
Officiell webbadress https://chromewebstore.google.com/detail/twitter-add-instant-reply/fokpchplhnamghfkfekgefcjfinmlglg
Beskrivning This extension adds an instant reply button, which you can set after clicking the extension's icon.
Filstorlek 38.56 KB
Antal Installationer 25
Aktuell Version 1.0
Senast Uppdaterad 2018-06-20
Publiceringsdatum 2018-06-20
Utvecklare bongosart
Betalningssätt free
Stödda Språk 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"
        }
    ]
}