Twitter Follower Blocker

Bulk tool for blocking Twitter followers.

Twitter Follower Blocker क्या है?

Twitter Follower Blocker Octal Research, LLC द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Bulk tool for blocking Twitter followers."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Twitter Follower Blocker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक 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"
    }
}