Social Media Link Preview

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

Cos'è Social Media Link Preview?

Social Media Link Preview è un'estensione di Chrome sviluppata da https://akzhy.com, e la sua funzione principale è "Shows a sample preview of OG and twitter card content of the current page".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Social Media Link Preview

Scarica i file di estensione Social Media Link Preview 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

                        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.                    

Informazioni di Base sull'Estensione

Nome Social Media Link Preview Social Media Link Preview
ID dlmoajpiphhokgbbfaiiekhlgpjnjfei
URL Ufficiale https://chromewebstore.google.com/detail/social-media-link-preview/dlmoajpiphhokgbbfaiiekhlgpjnjfei
Descrizione Shows a sample preview of OG and twitter card content of the current page
Dimensione del File 73.4 KB
Conteggio Installazioni 290
Versione Corrente 1.0.0
Ultimo Aggiornamento 2021-03-30
Data di Pubblicazione 2021-03-30
Sviluppatore https://akzhy.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/akzhy/social-media-link-preview
URL della Pagina di Aiuto https://github.com/akzhy/social-media-link-preview
Lingue Supportate 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": []
        }
    ]
}