Fast Follows

Boost your social media engagement with automation.

Was ist Fast Follows?

Fast Follows ist eine Chrome-Erweiterung, die von Rutkat entwickelt wurde, und ihr Hauptmerkmal ist "Boost your social media engagement with automation.".

Erweiterungsscreenshots

screenshot

Fast Follows-Erweiterungs-CRX-Datei herunterladen

Laden Sie Fast Follows-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Automate follows on social media platforms.

Platforms currently support which may change any time in this extension are:
twitter.com
soundcloud.com
medium.com
quora.com
pinterest.com
linkedin.com
  
3 EASY STEPS

1. Login to the platform supported by this extension.
2. Navigate to user's account then the subpage of the user's followers.
3. Click the query page button to follow the users visible on the page.                    

Grundlegende Informationen zur Erweiterung

Name Fast Follows Fast Follows
ID cafemfapekdlffilmheplelhnjljfkoe
Offizielle URL https://chromewebstore.google.com/detail/fast-follows/cafemfapekdlffilmheplelhnjljfkoe
Beschreibung Boost your social media engagement with automation.
Dateigröße 18.24 KB
Installationsanzahl 24
Aktuelle Version 1.0.0
Letztes Update 2019-08-29
Veröffentlichungsdatum 2019-08-28
Entwickler Rutkat
Zahlungsart free
Erweiterungswebsite http://runastartup.com
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fast Follows",
    "description": "Boost your social media engagement with automation.",
    "version": "1.0.0",
    "icons": {
        "48": "images\/icon-48.png",
        "64": "images\/icon-64.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "notifications",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "constants\/contextStrings.js",
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.facebook.com\/*",
                "*:\/\/*.twitter.com\/*",
                "*:\/\/*.soundcloud.com\/*",
                "*:\/\/*.medium.com\/*",
                "*:\/\/*.quora.com\/*",
                "*:\/\/*.pinterest.com\/*",
                "*:\/\/*.linkedin.com\/*"
            ],
            "js": [
                "constants\/domainList.js",
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_title": "Automate Follows",
        "default_icon": "images\/icon-128.png",
        "default_popup": "popup.html"
    }
}