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開發的Chrome擴展程式,該擴展的主要功能是“This extension adds an instant reply button, which you can set after clicking the extension's icon.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Twitter - Add Instant Reply擴展crx文件

下載Twitter - Add Instant Reply擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
        }
    ]
}