Restore Link Card
A browser extension to restore OGP link cards on Twitter (X).
What is Restore Link Card?
Restore Link Card is a Chrome extension developed by ろぼいん, and its main feature is "A browser extension to restore OGP link cards on Twitter (X).".
Extension Screenshots
Download Restore Link Card Extension CRX File
Download Restore Link Card extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Restore Link Card |
ID | ifgokfhnpkmpjgjiimciofkebopknkli |
Official URL | https://chromewebstore.google.com/detail/restore-link-card/ifgokfhnpkmpjgjiimciofkebopknkli |
Description | A browser extension to restore OGP link cards on Twitter (X). |
File Size | 12.15 KB |
Installation Count | 570 |
Current Version | 1.1.0 |
Last Updated | 2023-10-06 |
Publish Date | 2023-10-05 |
Rating | 5.00/5 Total 4 Ratings |
Developer | ろぼいん |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/Robot-Inventor/restore-link-card |
Help Page URL | https://github.com/Robot-Inventor/restore-link-card |
Supported Languages | 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\/*" ] } ] } |