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"."입니다.
확장 프로그램 스크린샷
Whom to follow for Twitter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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\/*" ] } |