Twitter Follower Blocker

Bulk tool for blocking Twitter followers.

Cos'è Twitter Follower Blocker?

Twitter Follower Blocker è un'estensione di Chrome sviluppata da Octal Research, LLC, e la sua funzione principale è "Bulk tool for blocking Twitter followers.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Twitter Follower Blocker

Scarica i file di estensione Twitter Follower Blocker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Twitter Follower Blocker Twitter Follower Blocker
ID clmjfekijbbiblcnelcmmfnlaaancehn
URL Ufficiale https://chrome.google.com/webstore/detail/twitter-follower-blocker/clmjfekijbbiblcnelcmmfnlaaancehn
Descrizione Bulk tool for blocking Twitter followers.
Dimensione del File 47.25 KB
Conteggio Installazioni 1,287
Versione Corrente 0.0.3
Ultimo Aggiornamento 2015-03-13
Data di Pubblicazione 2015-03-13
Valutazione 2.83/5 Totale 48 Valutazioni
Sviluppatore Octal Research, LLC
Tipo di Pagamento free
URL della Pagina di Aiuto https://bitbucket.org/ratfactor/twitterfollowerblocker
Lingue Supportate 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"
    }
}