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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
        }
    ]
}