Fake Followers
Display a Twitter user's percentage of Fake Followers
Fake Followers là gì?
Fake Followers là một tiện ích mở rộng Chrome được phát triển bởi williamgdjones, và tính năng chính của nó là "Display a Twitter user's percentage of Fake Followers".
Ả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 Fake Followers
Tải xuống các tệp mở rộng Fake Followers 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
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | eklhkfonoplfidhhblionobmfpphpgfa |
URL Chính Thức | https://chrome.google.com/webstore/detail/fake-followers/eklhkfonoplfidhhblionobmfpphpgfa |
Mô tả | Display a Twitter user's percentage of Fake Followers |
Kích Thước Tệp | 47.63 KB |
Số Lần Cài Đặt | 1,000 |
Phiên Bản Hiện Tại | 2.0 |
Cập Nhật Lần Cuối | 2014-11-07 |
Ngày Phát Hành | 2014-11-07 |
Đánh Giá | 2.37/5 Tổng số 43 Đánh Giá |
Nhà Phát Triển | williamgdjones |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |