Social Search Plus

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

Was ist Social Search Plus?

Social Search Plus ist eine Chrome-Erweiterung, die von https://socialsearchplus.com entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to search on all social platforms in one click!".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Social Search Plus-Erweiterungs-CRX-Datei herunterladen

Laden Sie Social Search Plus-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Social Search Plus Social Search Plus
ID gkjijpllljghgoahellmkbpallaklfcc
Offizielle URL https://chromewebstore.google.com/detail/social-search-plus/gkjijpllljghgoahellmkbpallaklfcc
Beschreibung This extension allows you to search on all social platforms in one click!
Dateigröße 98.74 KB
Installationsanzahl 93
Aktuelle Version 2.5
Letztes Update 2023-09-28
Veröffentlichungsdatum 2023-09-06
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler https://socialsearchplus.com
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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\/*"
            ]
        }
    ]
}