Fast Follows

Boost your social media engagement with automation.

Что такое Fast Follows?

Fast Follows - это расширение Chrome, разработанное Rutkat, и его основная функция - "Boost your social media engagement with automation.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Fast Follows

Скачайте файлы расширений Fast Follows в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Fast Follows Fast Follows
ID cafemfapekdlffilmheplelhnjljfkoe
Официальный URL https://chromewebstore.google.com/detail/fast-follows/cafemfapekdlffilmheplelhnjljfkoe
Описание Boost your social media engagement with automation.
Размер файла 18.24 KB
Количество установок 24
Текущая Версия 1.0.0
Последнее Обновление 2019-08-29
Дата публикации 2019-08-28
Разработчик Rutkat
Тип оплаты free
Официальный сайт расширения http://runastartup.com
Поддерживаемые языки 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"
    }
}