Medium Auto Follow Bot

A Bot to Follow and Unfollow Medium Users

Τι είναι το Medium Auto Follow Bot;

Το Medium Auto Follow Bot είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Sortie!, και η κύρια λειτουργία του είναι "A Bot to Follow and Unfollow Medium Users".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Medium Auto Follow Bot

Λήψη αρχείων επέκτασης Medium Auto Follow Bot σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Will this bot actual grow your followers and will the new followers actually read your posts?
————————————————————————————————————————————————————
Yes! Our users have reported both an increase in followers *and* an increase in readership after using this bot.

Are you worried about being banned or suspended from Medium.com for using this bot?  
———————————————————————————————————————————————
Don’t be! Since this is a Chrome extension rather than an app, Medium.com is unable to differentiate between your clicks and the bot’s since they share the same browser fingerprint.  To date, we’ve yet to have a *single* user report being suspended by Medium.com while using this bot.

Ok, I'm sold, how do I use it?  I’m glad you asked…

Following Users
—————————
To begin following users, go to a target users followers list. You will see a “Follow All” button next to the number of followers the target user has. After clicking “Follow All” the bot will begin to scroll to the bottom of the target user’s follower list. When the bot reaches the bottom of the list, it will begin to follow the users on the page, maintaining the list of users it has followed so as to not follow them again later.

Unfollowing Users
——————————
To begin unfollowing users, go to your account’s following list. You will see an “Unfollow All” button next to your follower count. After clicking “Unfollow All” the bot will begin to scroll to the bottom of your follower list. When the bot reaches the bottom of the list, it will begin to unfollow the users on the page.

The Whitelist
————————
The Medium Auto Follow Bot also contains a whitelist which is accessed by clicking on the browser extension icon. Type the Medium.com usernames with a @ before the username, separated by a comma into the input and click “Submit Whitelist” and these users will never be unfollowed by The Medium Auto Follow Bot.

Privacy Policy
————————
The Medium Auto Follow Bot stores the users that you’ve followed using the bot, the date that you followed them, and the users in your whitelist. This data is only stored to provide you the best product. This data is stored in your browser and is only used by your bot on your browser and no where else. This data never leaves your laptop and is in no way used for analysis or tracking by The Medium Auto Follow Bot team or any other third parties.


You can also contact the The Medium Auto Follow Bot team via Email, Facebook, or Twitter from directly in the extension. We love hearing from customers!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Medium Auto Follow Bot Medium Auto Follow Bot
ID bfhhijmnfihdeocoklmbbhlddhfeokbn
Επίσημο URL https://chromewebstore.google.com/detail/medium-auto-follow-bot/bfhhijmnfihdeocoklmbbhlddhfeokbn
Περιγραφή A Bot to Follow and Unfollow Medium Users
Μέγεθος Αρχείου 66.17 KB
Αριθμός Εγκαταστάσεων 433
Τρέχουσα Έκδοση 1.13
Τελευταία Ενημέρωση 2022-01-30
Ημερομηνία Δημοσίευσης 2020-10-20
Αξιολόγηση 1.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Sortie!
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Medium Auto Follow Bot",
    "version": "1.13",
    "description": "A Bot to Follow and Unfollow Medium Users",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "third-party\/jquery.min.js",
                "js\/utils\/constants.js",
                "js\/utils\/messaging.js",
                "js\/utils\/content_script_analytics.js",
                "js\/utils\/prototypeOverrides.js",
                "js\/utils\/slowIterate.js",
                "js\/utils\/storage.js",
                "js\/utils\/actions.js",
                "js\/following.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "third-party\/jquery.min.js",
                "js\/utils\/constants.js",
                "js\/utils\/messaging.js",
                "js\/utils\/content_script_analytics.js",
                "js\/utils\/prototypeOverrides.js",
                "js\/utils\/slowIterate.js",
                "js\/utils\/storage.js",
                "js\/utils\/actions.js",
                "js\/followers.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "browser_action": {
        "default_popup": "html\/popup.html",
        "default_icon": {
            "16": "images\/ChromeToolsIcon.png",
            "32": "images\/ChromeToolsIcon.png",
            "48": "images\/ChromeToolsIcon.png",
            "128": "images\/ChromeToolsIcon.png"
        }
    },
    "icons": {
        "16": "images\/ChromeToolsIcon.png",
        "32": "images\/ChromeToolsIcon.png",
        "48": "images\/ChromeToolsIcon.png",
        "128": "images\/ChromeToolsIcon.png"
    }
}