Twitter Follower Blocker

Bulk tool for blocking Twitter followers.

Apa itu Twitter Follower Blocker?

Twitter Follower Blocker adalah ekstensi Chrome yang dikembangkan oleh Octal Research, LLC, dan fitur utamanya adalah "Bulk tool for blocking Twitter followers.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Twitter Follower Blocker

Unduh file ekstensi Twitter Follower Blocker dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Twitter Follower Blocker Twitter Follower Blocker
ID clmjfekijbbiblcnelcmmfnlaaancehn
URL Resmi https://chrome.google.com/webstore/detail/twitter-follower-blocker/clmjfekijbbiblcnelcmmfnlaaancehn
Deskripsi Bulk tool for blocking Twitter followers.
Ukuran File 47.25 KB
Jumlah Instalasi 1,287
Versi Saat Ini 0.0.3
Terakhir Diperbarui 2015-03-13
Tanggal Publikasi 2015-03-13
Penilaian 2.83/5 Total 48 Penilaian
Pengembang Octal Research, LLC
Tipe Pembayaran free
URL Halaman Bantuan https://bitbucket.org/ratfactor/twitterfollowerblocker
Bahasa yang Didukung 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"
    }
}