Social Media Link Preview

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

什麼是Social Media Link Preview?

Social Media Link Preview是由https://akzhy.com開發的Chrome擴展程式,該擴展的主要功能是“Shows a sample preview of OG and twitter card content of the current page”。

擴展截圖

screenshot
screenshot
screenshot

下載Social Media Link Preview擴展crx文件

下載Social Media Link Preview擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Social Media Link Preview Social Media Link Preview
ID dlmoajpiphhokgbbfaiiekhlgpjnjfei
官方網址 https://chromewebstore.google.com/detail/social-media-link-preview/dlmoajpiphhokgbbfaiiekhlgpjnjfei
簡介 Shows a sample preview of OG and twitter card content of the current page
檔案大小 73.4 KB
安裝次數 290
目前版本 1.0.0
更新時間 2021-03-30
上架時間 2021-03-30
開發者 https://akzhy.com
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/akzhy/social-media-link-preview
說明頁面URL https://github.com/akzhy/social-media-link-preview
支援的語言 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": []
        }
    ]
}