Social Media Link Preview

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

Qu'est-ce que Social Media Link Preview ?

Social Media Link Preview est une extension Chrome développée par https://akzhy.com, et sa fonction principale est "Shows a sample preview of OG and twitter card content of the current page".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Social Media Link Preview

Téléchargez les fichiers d'extension Social Media Link Preview au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Social Media Link Preview Social Media Link Preview
ID dlmoajpiphhokgbbfaiiekhlgpjnjfei
URL Officiel https://chromewebstore.google.com/detail/social-media-link-preview/dlmoajpiphhokgbbfaiiekhlgpjnjfei
Description Shows a sample preview of OG and twitter card content of the current page
Taille du Fichier 73.4 KB
Nombre d'Installations 290
Version Actuelle 1.0.0
Dernière Mise à Jour 2021-03-30
Date de Publication 2021-03-30
Développeur https://akzhy.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/akzhy/social-media-link-preview
URL de la Page d'Aide https://github.com/akzhy/social-media-link-preview
Langues Prises en Charge 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": []
        }
    ]
}