Social Search Plus

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

Что такое Social Search Plus?

Social Search Plus - это расширение Chrome, разработанное https://socialsearchplus.com, и его основная функция - "This extension allows you to search on all social platforms in one click!".

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

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Social Search Plus

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

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

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

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

Название Social Search Plus Social Search Plus
ID gkjijpllljghgoahellmkbpallaklfcc
Официальный URL https://chromewebstore.google.com/detail/social-search-plus/gkjijpllljghgoahellmkbpallaklfcc
Описание This extension allows you to search on all social platforms in one click!
Размер файла 98.74 KB
Количество установок 93
Текущая Версия 2.5
Последнее Обновление 2023-09-28
Дата публикации 2023-09-06
Рейтинг 3.00/5 Всего 2 оценок
Разработчик https://socialsearchplus.com
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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\/*"
            ]
        }
    ]
}