WhoToFollow
Simple extension for showing number of following/followers of actual user on twitter page.
WhoToFollow là gì?
WhoToFollow là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Simple extension for showing number of following/followers of actual user on twitter page.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng WhoToFollow
Tải xuống các tệp mở rộng WhoToFollow dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
If you want to increase your follower base on Twitter but you don't want to use various tricks and do it manually, this extension will help you. It provides user information (number of tweets, followers, following and last activity) in list of users. In addition it provides highlighting users which will most likely re-follow us based on following/followers ratio and last activity. Best method to increase twitter followers is find big user profile dedicated to your line of interests (e.q. I am devloper for IT), open it's followers and follow them based on their bio and provided information, mostly following/followers ratio, because bigger the ratio, bigger chances for user to re-follow you. Any questions, suggestions please tweet @jCobbSK
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | WhoToFollow |
ID | eepjakceehfefaceelphjhiomlnldgel |
URL Chính Thức | https://chromewebstore.google.com/detail/whotofollow/eepjakceehfefaceelphjhiomlnldgel |
Mô tả | Simple extension for showing number of following/followers of actual user on twitter page. |
Kích Thước Tệp | 58.08 KB |
Số Lần Cài Đặt | 23 |
Phiên Bản Hiện Tại | 1.0.3 |
Cập Nhật Lần Cuối | 2015-04-06 |
Ngày Phát Hành | 2015-04-06 |
Đánh Giá | 3.75/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | Unknown |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "1.0.3", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "images\/16x16.png", "32": "images\/32x32.png", "128": "images\/128x128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "options_page": "options.html", "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/followers", "https:\/\/twitter.com\/following", "https:\/\/twitter.com\/*\/followers", "https:\/\/twitter.com\/*\/following" ], "js": [ "bower_components\/jquery\/dist\/jquery.js", "scripts\/content.js" ], "css": [ "styles\/content.css" ] } ], "web_accessible_resources": [ "images\/*.gif" ], "permissions": [ "storage" ], "author": "jCobbSK" } |