Social Friend Finder

Search for names in multiple social networking sites at once.

O que é Social Friend Finder?

Social Friend Finder é uma extensão do Chrome desenvolvida por https://sffaddon.com, e sua principal característica é "Search for names in multiple social networking sites at once.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Social Friend Finder

Baixe arquivos de extensão Social Friend Finder no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Social Friend Finder Social Friend Finder
ID phimncbfdaljjdgkoinjolnbjgonkina
URL Oficial https://chromewebstore.google.com/detail/social-friend-finder/phimncbfdaljjdgkoinjolnbjgonkina
Descrição Search for names in multiple social networking sites at once.
Tamanho do Arquivo 40.15 KB
Contagem de Instalações 1,061
Versão Atual 5.0.0
Última Atualização 2023-12-04
Data de Publicação 2021-11-10
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://sffaddon.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://sffaddon.com
URL da Página de Política de Privacidade https://sffaddon.com/cookies-policy
Idiomas Suportados 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"
    ]
}