Twitter Follower Blocker
Bulk tool for blocking Twitter followers.
什么是Twitter Follower Blocker?
Twitter Follower Blocker是由Octal Research, LLC开发的Chrome扩展程序,该扩展的主要功能是“Bulk tool for blocking Twitter followers.”。
扩展截图
下载Twitter Follower Blocker扩展crx文件
下载Twitter Follower Blocker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Purpose: Fight the scourge of fake Twitter follower spam! Partially automates the (currently) painful multiple-click process to block obvious fake accounts following yours by providing a check box interface to select multiple accounts at once. Usage: Log into your Twitter account, click on your Followers page, and then click on this extension's icon (which should appear in the address bar). The Twitter Followers page uses an "infinite scroll" technique which loads more accounts to the screen as you scroll downward in your browser. Twitter Follower Blocker will only be able to see the followers currently visible on the page. About: This extension is open source and released under the GPLv3 license! You can view the source and contribute at https://bitbucket.org/ratfactor/twitterfollowerblocker This project is by Dave Gauer. Though it is completely free, I am publishing it under the business name, Octal Research, LLC.
扩展基本信息
名称 | |
ID | clmjfekijbbiblcnelcmmfnlaaancehn |
官方URL | https://chrome.google.com/webstore/detail/twitter-follower-blocker/clmjfekijbbiblcnelcmmfnlaaancehn |
简介 | Bulk tool for blocking Twitter followers. |
文件大小 | 47.25 KB |
安装次数 | 1,287 |
当前版本 | 0.0.3 |
更新时间 | 2015-03-13 |
上架时间 | 2015-03-13 |
评分 | 2.83/5 共48次评分 |
开发者 | Octal Research, LLC |
付费类型 | free |
帮助页面URL | https://bitbucket.org/ratfactor/twitterfollowerblocker |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitter Follower Blocker", "short_name": "TwitBlock", "description": "Bulk tool for blocking Twitter followers.", "version": "0.0.3", "permissions": [ "tabs", "https:\/\/twitter.com\/followers" ], "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/followers" ], "js": [ "jquery.js", "page.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ] }, "page_action": { "default_title": "Block Followers", "default_icon": "icon48.png" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |