Automate Connection

Automate Connection helps you send friend requests and follow people you find in Groups.

Co to jest Automate Connection?

Automate Connection to rozszerzenie Chrome opracowane przez https://automateconnection.com, a jego główną funkcją jest „Automate Connection helps you send friend requests and follow people you find in Groups.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Automate Connection

Pobierz pliki rozszerzeń Automate Connection 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

                        This extension allows you to automate the process of connecting with your ideal clients.

You can search through social media groups and friend request clients who fit certain criteria.

These include:
Group Name
Number of Mutual Friends
Keyword in their description

You can send up to 50 per day and it shows how many you've sent in total. (Free Version Only 20)                    

Podstawowe informacje o rozszerzeniu

Nazwa Automate Connection Automate Connection
ID ghhablmjeefoeiacopikkahllihhoagf
Oficjalny URL https://chromewebstore.google.com/detail/automate-connection/ghhablmjeefoeiacopikkahllihhoagf
Opis Automate Connection helps you send friend requests and follow people you find in Groups.
Rozmiar pliku 622 KB
Liczba instalacji 20
Aktualna Wersja 1.96
Ostatnia Aktualizacja 2020-11-06
Data Publikacji 2020-07-17
Deweloper https://automateconnection.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.automateconnection.com
Adres URL Strony Pomocy https://www.automateconnection.com/support
Adres URL Strony Polityki Prywatności https://www.automateconnection.com/privacy
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Automate Connection",
    "version": "1.96",
    "description": "Automate Connection helps you send friend requests and follow people you find in Groups.",
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "images\/icon-128.png",
        "default_title": "Automate Connection"
    },
    "icons": {
        "128": "images\/icon-128.png",
        "48": "images\/icon-48.png",
        "16": "images\/icon-16.png"
    },
    "manifest_version": 2,
    "permissions": [
        "storage",
        "tabs",
        "http:\/\/facebook.com\/*",
        "https:\/\/facebook.com\/*",
        "http:\/\/*.facebook.com\/*",
        "https:\/\/*.facebook.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.facebook.com\/*"
            ],
            "js": [
                "jquery.js",
                "contentscript.js"
            ],
            "css": [
                "content_script.css"
            ]
        }
    ]
}