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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://akzhy.com และคุณลักษณะหลักของมันคือ "Shows a sample preview of OG and twitter card content of the current page"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Social Media Link Preview

ดาวน์โหลดไฟล์ส่วนขยาย 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": []
        }
    ]
}