Social Search Plus

This extension allows you to search on all social platforms in one click!

Co to jest Social Search Plus?

Social Search Plus to rozszerzenie Chrome opracowane przez https://socialsearchplus.com, a jego główną funkcją jest „This extension allows you to search on all social platforms in one click!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Social Search Plus

Pobierz pliki rozszerzeń Social Search Plus 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

                        Type in your search in google and have the option to search your query on different socials all from the google search page.                    

Podstawowe informacje o rozszerzeniu

Nazwa Social Search Plus Social Search Plus
ID gkjijpllljghgoahellmkbpallaklfcc
Oficjalny URL https://chromewebstore.google.com/detail/social-search-plus/gkjijpllljghgoahellmkbpallaklfcc
Opis This extension allows you to search on all social platforms in one click!
Rozmiar pliku 98.74 KB
Liczba instalacji 93
Aktualna Wersja 2.5
Ostatnia Aktualizacja 2023-09-28
Data Publikacji 2023-09-06
Ocena 3.00/5 Łącznie 2 Oceny
Deweloper https://socialsearchplus.com
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Social Search Plus",
    "description": "This extension allows you to search on all social platforms in one click!",
    "version": "2.5",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "action": {
        "default_icon": "images\/SSP1-logo.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/www.google.com\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "styles.css",
                "images\/*.png"
            ],
            "matches": [
                "https:\/\/www.google.com\/*"
            ]
        }
    ]
}