Twitter Thanks

Twitter thanks for following

Twitter Thanks क्या है?

Twitter Thanks @PlayingCats द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Twitter thanks for following"।

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Twitter Thanks एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
        }
    ]
}