WhoToFollow
Simple extension for showing number of following/followers of actual user on twitter page.
WhoToFollow란 무엇입니까?
WhoToFollow은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simple extension for showing number of following/followers of actual user on twitter page."입니다.
확장 프로그램 스크린샷
WhoToFollow 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | WhoToFollow |
ID | eepjakceehfefaceelphjhiomlnldgel |
공식 URL | https://chromewebstore.google.com/detail/whotofollow/eepjakceehfefaceelphjhiomlnldgel |
설명 | Simple extension for showing number of following/followers of actual user on twitter page. |
파일 크기 | 58.08 KB |
설치 횟수 | 23 |
현재 버전 | 1.0.3 |
최근 업데이트 | 2015-04-06 |
출시 날짜 | 2015-04-06 |
평점 | 3.75/5 총 4 개의 평점 |
개발자 | Unknown |
결제 유형 | free |
지원되는 언어 | 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" } |