Whom to follow for Twitter
This extension corrects Twitter's "Who to follow" to "Whom to follow".
Wat is Whom to follow for Twitter?
Whom to follow for Twitter is een Chrome-extensie ontwikkeld door https://blog.tomayac.com, en de belangrijkste functie is "This extension corrects Twitter's "Who to follow" to "Whom to follow".".
Extensie Screenshots
Download het CRX-bestand van de extensie Whom to follow for Twitter
Download Whom to follow for Twitter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Whom to follow for Twitter |
ID | ialgepocjcijbnlliojljnijmeciibha |
Officiële URL | https://chromewebstore.google.com/detail/whom-to-follow-for-twitte/ialgepocjcijbnlliojljnijmeciibha |
Beschrijving | This extension corrects Twitter's "Who to follow" to "Whom to follow". |
Bestandsgrootte | 33.12 KB |
Aantal Installaties | 346 |
Huidige Versie | 1.2.3 |
Laatst Bijgewerkt | 2020-12-01 |
Publicatiedatum | 2017-06-17 |
Beoordeling | 4.60/5 Totaal 53 Beoordelingen |
Ontwikkelaar | https://blog.tomayac.com |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | http://blog.tomayac.com/ |
Help Pagina-URL | http://twitter.com/tomayac |
URL van de Privacybeleid Pagina | https://raw.githubusercontent.com/tomayac/blogccasion/master/privacy-policy.txt |
Ondersteunde Talen | 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\/*" ] } |