Social Friend Finder

Search for names in multiple social networking sites at once.

Cos'è Social Friend Finder?

Social Friend Finder è un'estensione di Chrome sviluppata da https://sffaddon.com, e la sua funzione principale è "Search for names in multiple social networking sites at once.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Social Friend Finder

Scarica i file di estensione Social Friend Finder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Social Friend Finder (SFF) add-on makes concurrent search of names and usernames on 32 social networking sites possible with just 2 clicks, including major ones like Facebook, Instagram, Twitter, TikTok and LinkedIn!

Just highlight the name or the username you have encountered on the web and use the tooltip button or the context menu button to perform a search for it instantly. You can anytime choose which of the 2 buttons will be active through the add-on's options menu in order to customize the search experience to your own preferences.

Results will be presented on a new tab in a variety of ways: As direct links to social media profiles, as images and as search links pointing directly to many social networks. There is also the ability to filter the results by website.                    

Informazioni di Base sull'Estensione

Nome Social Friend Finder Social Friend Finder
ID phimncbfdaljjdgkoinjolnbjgonkina
URL Ufficiale https://chromewebstore.google.com/detail/social-friend-finder/phimncbfdaljjdgkoinjolnbjgonkina
Descrizione Search for names in multiple social networking sites at once.
Dimensione del File 40.15 KB
Conteggio Installazioni 1,061
Versione Corrente 5.0.0
Ultimo Aggiornamento 2023-12-04
Data di Pubblicazione 2021-11-10
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://sffaddon.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://sffaddon.com
URL della Pagina della Politica sulla Privacy https://sffaddon.com/cookies-policy
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "author": "Costas Athanasopoulos",
    "homepage_url": "https:\/\/sffaddon.com",
    "name": "Social Friend Finder",
    "short_name": "SFF",
    "version": "5.0.0",
    "description": "Search for names in multiple social networking sites at once.",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "sff-background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "content\/sff-tooltip.css"
            ],
            "js": [
                "content\/sff-tooltip.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "content_security_policy": {
        "extension_pages": "default-src 'self'"
    },
    "options_ui": {
        "page": "options\/sff-options.html",
        "open_in_tab": false
    },
    "permissions": [
        "contextMenus",
        "storage"
    ]
}