Fake Followers

Display a Twitter user's percentage of Fake Followers

Fake Followers란 무엇입니까?

Fake Followers은(는) williamgdjones에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Display a Twitter user's percentage of Fake Followers"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Fake Followers 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Fake it… 'til we made it. 

There's often more to someone's follower count than you might realise - with Fake Followers, you can easily tell who's been buying fake twitter followers. Did you know over 40% of Justin Bieber's 40 million followers are inactive users or bots? 

The Fake Followers Chrome extension displays a percentage of fake followers, inline on Twitter account pages. We use Twitteraudit.com for the analysis: big props to them.

If an account hasn't been audited yet, you'll see a sad face :(. To fix, visit Twitteraudit.com and run an audit manually. Once you've done this however, the percentage will be displayed every time you load that profile (and for the rest of us!). If for some reason the loading screen doesn't appear, please reload the page.

If you're interested in contributing, check out our public repo at https://github.com/willgdjones/Fake-Followers

By Will Jones and Will Hines, with help from Nicola Greco.                    

확장 프로그램 기본 정보

이름 Fake Followers Fake Followers
ID eklhkfonoplfidhhblionobmfpphpgfa
공식 URL https://chrome.google.com/webstore/detail/fake-followers/eklhkfonoplfidhhblionobmfpphpgfa
설명 Display a Twitter user's percentage of Fake Followers
파일 크기 47.63 KB
설치 횟수 1,000
현재 버전 2.0
최근 업데이트 2014-11-07
출시 날짜 2014-11-07
평점 2.37/5 총 43 개의 평점
개발자 williamgdjones
결제 유형 free
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fake Followers",
    "description": "Display a Twitter user's percentage of Fake Followers",
    "manifest_version": 2,
    "version": "2.0",
    "icons": {
        "16": "16x16.png",
        "48": "48x48.png",
        "128": "128x128.png"
    },
    "web_accessible_resources": [
        "16x16.png"
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "background",
        "https:\/\/*\/*"
    ],
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "jquery-1.11.1.min.js",
                "inject.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Fake Followers",
        "default_icon": "128x128.png",
        "default_popup": "popup.html"
    }
}