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
官方URL 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": []
        }
    ]
}