Social Media Link Preview

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

Co to jest Social Media Link Preview?

Social Media Link Preview to rozszerzenie Chrome opracowane przez https://akzhy.com, a jego główną funkcją jest „Shows a sample preview of OG and twitter card content of the current page”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Social Media Link Preview

Pobierz pliki rozszerzeń Social Media Link Preview w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Social Media Link Preview Social Media Link Preview
ID dlmoajpiphhokgbbfaiiekhlgpjnjfei
Oficjalny URL https://chromewebstore.google.com/detail/social-media-link-preview/dlmoajpiphhokgbbfaiiekhlgpjnjfei
Opis Shows a sample preview of OG and twitter card content of the current page
Rozmiar pliku 73.4 KB
Liczba instalacji 290
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2021-03-30
Data Publikacji 2021-03-30
Deweloper https://akzhy.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/akzhy/social-media-link-preview
Adres URL Strony Pomocy https://github.com/akzhy/social-media-link-preview
Obsługiwane Języki 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": []
        }
    ]
}