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" } } |