Restore Link Card

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

Co je Restore Link Card?

Restore Link Card je rozšíření Chrome vyvinuté ろぼいん, a jeho hlavní funkcí je „A browser extension to restore OGP link cards on Twitter (X).“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Restore Link Card

Stáhněte si soubory rozšíření Restore Link Card ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Restore Link Card Restore Link Card
ID ifgokfhnpkmpjgjiimciofkebopknkli
Oficiální URL https://chromewebstore.google.com/detail/restore-link-card/ifgokfhnpkmpjgjiimciofkebopknkli
Popis A browser extension to restore OGP link cards on Twitter (X).
Velikost souboru 12.15 KB
Počet instalací 570
Aktuální Verze 1.1.0
Poslední Aktualizace 2023-10-06
Datum Vydání 2023-10-05
Hodnocení 5.00/5 Celkem 4 Hodnocení
Vývojář ろぼいん
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/Robot-Inventor/restore-link-card
URL Stránky Nápovědy https://github.com/Robot-Inventor/restore-link-card
Podporované Jazyky 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\/*"
            ]
        }
    ]
}