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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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