Restore Link Card

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

Co to jest Restore Link Card?

Restore Link Card to rozszerzenie Chrome opracowane przez ろぼいん, a jego główną funkcją jest „A browser extension to restore OGP link cards on Twitter (X).”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Restore Link Card

Pobierz pliki rozszerzeń Restore Link Card w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Restore Link Card Restore Link Card
ID ifgokfhnpkmpjgjiimciofkebopknkli
Oficjalny URL https://chromewebstore.google.com/detail/restore-link-card/ifgokfhnpkmpjgjiimciofkebopknkli
Opis A browser extension to restore OGP link cards on Twitter (X).
Rozmiar pliku 12.15 KB
Liczba instalacji 570
Aktualna Wersja 1.1.0
Ostatnia Aktualizacja 2023-10-06
Data Publikacji 2023-10-05
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper ろぼいん
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/Robot-Inventor/restore-link-card
Adres URL Strony Pomocy https://github.com/Robot-Inventor/restore-link-card
Obsługiwane Języki 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\/*"
            ]
        }
    ]
}