Social Media Link Preview

Shows a sample preview of OG and twitter card content of the current page

O que é Social Media Link Preview?

Social Media Link Preview é uma extensão do Chrome desenvolvida por https://akzhy.com, e sua principal característica é "Shows a sample preview of OG and twitter card content of the current page".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Social Media Link Preview

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

                        This extension will show a sample preview of a webpage that is shown when it is shared on social media such as twitter and Facebook.
The goal of this extension is to provide a general idea and actual result may slightly vary.
Works on local websites as well.                    

Informações Básicas da Extensão

Nome Social Media Link Preview Social Media Link Preview
ID dlmoajpiphhokgbbfaiiekhlgpjnjfei
URL Oficial https://chromewebstore.google.com/detail/social-media-link-preview/dlmoajpiphhokgbbfaiiekhlgpjnjfei
Descrição Shows a sample preview of OG and twitter card content of the current page
Tamanho do Arquivo 73.4 KB
Contagem de Instalações 290
Versão Atual 1.0.0
Última Atualização 2021-03-30
Data de Publicação 2021-03-30
Desenvolvedor https://akzhy.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/akzhy/social-media-link-preview
URL da Página de Ajuda https://github.com/akzhy/social-media-link-preview
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Shows a sample preview of OG and twitter card content of the current page",
    "version": "1.0.0",
    "manifest_version": 3,
    "name": "Social Media Link Preview",
    "short_name": "Shows twitter card \/ og content",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": []
        }
    ]
}