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).”。
擴展截圖
下載Restore Link Card擴展crx文件
下載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 |
官方網址 | 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\/*" ] } ] } |