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
Eメール [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": []
        }
    ]
}