Restore Link Card
A browser extension to restore OGP link cards on Twitter (X).
Restore Link Cardคืออะไร?
Restore Link Card เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ろぼいん และคุณลักษณะหลักของมันคือ "A browser extension to restore OGP link cards on Twitter (X)."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Restore Link Card
ดาวน์โหลดไฟล์ส่วนขยาย Restore Link Card ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Twitter (X) removed headings from links in tweets (posts) on October 4, 2023. This extension restores the removed headlines and restores the previous ease of use.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Restore Link Card |
ID | ifgokfhnpkmpjgjiimciofkebopknkli |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/restore-link-card/ifgokfhnpkmpjgjiimciofkebopknkli |
คำอธิบาย | A browser extension to restore OGP link cards on Twitter (X). |
ขนาดไฟล์ | 12.15 KB |
จำนวนการติดตั้ง | 570 |
เวอร์ชันปัจจุบัน | 1.1.0 |
อัปเดตครั้งล่าสุด | 2023-10-06 |
วันที่เผยแพร่ | 2023-10-05 |
คะแนน | 5.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | ろぼいん |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/Robot-Inventor/restore-link-card |
URL หน้าช่วยเหลือ | https://github.com/Robot-Inventor/restore-link-card |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Restore Link Card", "short_name": "RestoreLinkCard", "version": "1.1.0", "description": "A browser extension to restore OGP link cards on Twitter (X).", "icons": { "128": "icon.png" }, "host_permissions": [ "https:\/\/twitter.com\/*", "https:\/\/mobile.twitter.com\/*", "https:\/\/tweetdeck.twitter.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*", "https:\/\/mobile.twitter.com\/*", "https:\/\/tweetdeck.twitter.com\/*" ], "js": [ "loader.js" ] } ], "web_accessible_resources": [ { "resources": [ "main.js" ], "matches": [ "https:\/\/twitter.com\/*", "https:\/\/mobile.twitter.com\/*", "https:\/\/tweetdeck.twitter.com\/*" ] } ] } |