Twitter Thanks

Twitter thanks for following

Twitter Thanksとは何ですか?

Twitter Thanksは@PlayingCatsによって開発されたChromeの拡張機能で、その主な機能は「Twitter thanks for following」です。

Twitter Thanks拡張機能のCRXファイルをダウンロード

Twitter Thanks拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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"
        }
    ]
}