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.”。

擴展截圖

screenshot
screenshot

下載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.                    

擴展基本資訊

名稱 Twitter Follower Blocker Twitter Follower Blocker
ID clmjfekijbbiblcnelcmmfnlaaancehn
官方網址 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"
    }
}