Restore Link Card
A browser extension to restore OGP link cards on Twitter (X).
Qu'est-ce que Restore Link Card ?
Restore Link Card est une extension Chrome développée par ろぼいん, et sa fonction principale est "A browser extension to restore OGP link cards on Twitter (X).".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Restore Link Card
Téléchargez les fichiers d'extension Restore Link Card au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Restore Link Card |
ID | ifgokfhnpkmpjgjiimciofkebopknkli |
URL Officiel | https://chromewebstore.google.com/detail/restore-link-card/ifgokfhnpkmpjgjiimciofkebopknkli |
Description | A browser extension to restore OGP link cards on Twitter (X). |
Taille du Fichier | 12.15 KB |
Nombre d'Installations | 570 |
Version Actuelle | 1.1.0 |
Dernière Mise à Jour | 2023-10-06 |
Date de Publication | 2023-10-05 |
Évaluation | 5.00/5 Total 4 Évaluations |
Développeur | ろぼいん |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/Robot-Inventor/restore-link-card |
URL de la Page d'Aide | https://github.com/Robot-Inventor/restore-link-card |
Langues Prises en Charge | 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\/*" ] } ] } |