Twitter Thanks

Twitter thanks for following

Twitter Thanks란 무엇입니까?

Twitter Thanks은(는) @PlayingCats에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Twitter thanks for following"입니다.

Twitter Thanks 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Twitter Thanks is simple plugin to say thanks for following. 

How to use.
First, click right mouse button and edit settings (see below how to do that). Then:
1. Go to your twitter followers page.
2. Click extension button.
3. It will find new followers and open tweet window with text ready to tweet.
4. Last follower is saved in local storage. Next time extension will start searching new followers starting from this name.

If you want to change greetings text or set last username greeted open settings and set values you want.

'#' is a placeholder for usernames. Do not add @ to username.

The tweet length is 140 symbols so if you want to greet everyone you might need to tweet several times.
If there are no new followers you will get an alert.

This extension DOES NOT use Twitter API. It just parses html page. If you want to thank more followers just scroll down your followers page so that more of usernames are loaded. 

Cheers
@PlayingCats                    

확장 프로그램 기본 정보

이름 Twitter Thanks Twitter Thanks
ID mmlhefklkfjkkliejkhnhdlgjjofaodd
공식 URL https://chromewebstore.google.com/detail/twitter-thanks/mmlhefklkfjkkliejkhnhdlgjjofaodd
설명 Twitter thanks for following
파일 크기 11.79 KB
설치 횟수 24
현재 버전 2.0.2
최근 업데이트 2017-04-21
출시 날짜 2017-04-21
평점 5.00/5 총 3 개의 평점
개발자 @PlayingCats
결제 유형 free
확장 프로그램 웹 사이트 https://twitter.com/PlayingCats
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Thanks",
    "description": "Twitter thanks for following",
    "version": "2.0.2",
    "author": "Denys Spirin",
    "options_page": "options.html",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_title": "Say thanks",
        "default_icon": "icon48.png"
    },
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}