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 |
官方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\/*" ] } ] } |