Restore Link Card

A browser extension to restore OGP link cards on Twitter (X).

Cos'è Restore Link Card?

Restore Link Card è un'estensione di Chrome sviluppata da ろぼいん, e la sua funzione principale è "A browser extension to restore OGP link cards on Twitter (X).".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Restore Link Card

Scarica i file di estensione Restore Link Card in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Restore Link Card Restore Link Card
ID ifgokfhnpkmpjgjiimciofkebopknkli
URL Ufficiale https://chromewebstore.google.com/detail/restore-link-card/ifgokfhnpkmpjgjiimciofkebopknkli
Descrizione A browser extension to restore OGP link cards on Twitter (X).
Dimensione del File 12.15 KB
Conteggio Installazioni 570
Versione Corrente 1.1.0
Ultimo Aggiornamento 2023-10-06
Data di Pubblicazione 2023-10-05
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore ろぼいん
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Robot-Inventor/restore-link-card
URL della Pagina di Aiuto https://github.com/Robot-Inventor/restore-link-card
Lingue Supportate 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\/*"
            ]
        }
    ]
}