Whom to follow for Twitter

This extension corrects Twitter's "Who to follow" to "Whom to follow".

Whom to follow for Twitter क्या है?

Whom to follow for Twitter https://blog.tomayac.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension corrects Twitter's "Who to follow" to "Whom to follow"."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

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

crx प्रारूप में Whom to follow for Twitter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Description:
=========

Dear Twitter,

This extension turns your "Who to follow" into a "Whom to follow".

Pedantically yours,
Tom
http://twitter.com/tomayac

PS: thanks TechCrunch for featuring this extension in a blog post: http://techcrunch.com/2011/02/25/towhomtheextensiontolls/

Changelog:
========

* 1.2.0:
- Moved to MutationObserver for better performance.

* 1.0.11:
- Changed the name due to Twitter's trademark concerns.

* 1.0.10:
- Further code simplifications.

* 1.0.9:
- Code optimizations. 

* 1.0.8:
- Uses DOM TreeWalker now. Faster.

* 1.0.7:
- Complete reimplementation compatible to #NewNewTwitter and #NewTwitter.

* 1.0.6:
- Corrected top navigation link in account settings. Thanks @jouhanallende.

* 1.0.5:
- Again fixed the top navigation link after Twitter's slight change.

* 1.0.4:
- Fixed top navigation link after Twitter's slight change.

* 1.0.3:
- Fixed "Twitter accounts suggested for you based on who you follow and more.".

* 1.0.2:
- Fixed page twitter.com/#!/who_to_follow/suggestions.

* 1.0.1
- Fixed page "twitter.com/#!/who_to_follow".

* 1.0.0
-  Initial release.                    

एक्सटेंशन की मूल जानकारी

नाम Whom to follow for Twitter Whom to follow for Twitter
ID ialgepocjcijbnlliojljnijmeciibha
आधिकारिक URL https://chromewebstore.google.com/detail/whom-to-follow-for-twitte/ialgepocjcijbnlliojljnijmeciibha
विवरण This extension corrects Twitter's "Who to follow" to "Whom to follow".
फ़ाइल का आकार 33.12 KB
स्थापना संख्या 346
वर्तमान संस्करण 1.2.3
अंतिम अपडेट 2020-12-01
प्रकाशन तिथि 2017-06-17
रेटिंग 4.60/5 कुल 53 रेटिंग्स
डेवलपर https://blog.tomayac.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://blog.tomayac.com/
सहायता पृष्ठ URL http://twitter.com/tomayac
गोपनीयता नीति पृष्ठ URL https://raw.githubusercontent.com/tomayac/blogccasion/master/privacy-policy.txt
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "1.2.3",
    "manifest_version": 2,
    "description": "__MSG_extDesc__",
    "icons": {
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "default_locale": "en_US",
    "page_action": {
        "default_icon": "icon_128.png",
        "default_title": "__MSG_extTitle__"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "https:\/\/twitter.com\/*",
        "https:\/\/mobile.twitter.com\/*"
    ]
}