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開發的Chrome擴展程式,該擴展的主要功能是“This extension corrects Twitter's "Who to follow" to "Whom to follow".”。

擴展截圖

screenshot

下載Whom to follow for Twitter擴展crx文件

下載Whom to follow for Twitter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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\/*"
    ]
}