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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย bongosart และคุณลักษณะหลักของมันคือ "This extension adds an instant reply button, which you can set after clicking the extension's icon."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitter - Add Instant Reply

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
        }
    ]
}