Social Media Profile Saver

Allows you to save the important details from a profile page as an HTML document

O que é Social Media Profile Saver?

Social Media Profile Saver é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Allows you to save the important details from a profile page as an HTML document".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Social Media Profile Saver

Baixe arquivos de extensão Social Media Profile Saver 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

                        Allows you to save the important details from a profile page as an HTML document                    

Informações Básicas da Extensão

Nome Social Media Profile Saver Social Media Profile Saver
ID okfbgbjbkfkndojokpjpfmhgadedmamb
URL Oficial https://chromewebstore.google.com/detail/social-media-profile-save/okfbgbjbkfkndojokpjpfmhgadedmamb
Descrição Allows you to save the important details from a profile page as an HTML document
Tamanho do Arquivo 13.71 KB
Contagem de Instalações 93
Versão Atual 1.1.1
Última Atualização 2017-02-17
Data de Publicação 2017-02-17
Classificação 1.00/5 Total de 2 Avaliações
Desenvolvedor Unknown
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Social Media Profile Saver",
    "version": "1.1.1",
    "manifest_version": 2,
    "icons": {
        "128": "save-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.linkedin.com\/*",
                "https:\/\/*.linkedin.com\/*"
            ],
            "js": [
                "profile_content.js",
                "profile_content_old.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "http:\/\/*.linkedin.com\/recruiter\/profile\/*",
                "https:\/\/*.linkedin.com\/recruiter\/profile\/*"
            ],
            "js": [
                "recruiter_profile_content.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "http:\/\/*.linkedin.com\/*",
                "https:\/\/*.linkedin.com\/*"
            ],
            "js": [
                "push_state.js"
            ],
            "run_at": "document_start"
        }
    ]
}