Fast Follows

Boost your social media engagement with automation.

Co to jest Fast Follows?

Fast Follows to rozszerzenie Chrome opracowane przez Rutkat, a jego główną funkcją jest „Boost your social media engagement with automation.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Fast Follows

Pobierz pliki rozszerzeń Fast Follows w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Fast Follows Fast Follows
ID cafemfapekdlffilmheplelhnjljfkoe
Oficjalny URL https://chromewebstore.google.com/detail/fast-follows/cafemfapekdlffilmheplelhnjljfkoe
Opis Boost your social media engagement with automation.
Rozmiar pliku 18.24 KB
Liczba instalacji 24
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2019-08-29
Data Publikacji 2019-08-28
Deweloper Rutkat
Typ Płatności free
Strona Rozszerzenia http://runastartup.com
Obsługiwane Języki 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"
    }
}