FxTwitter Embeds Fixer for Discord

Fix broken Twitter/X embeds!

Что такое FxTwitter Embeds Fixer for Discord?

FxTwitter Embeds Fixer for Discord - это расширение Chrome, разработанное yigitaltunay, и его основная функция - "Fix broken Twitter/X embeds!".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения FxTwitter Embeds Fixer for Discord

Скачайте файлы расширений FxTwitter Embeds Fixer for Discord в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Swap out x.com links for fxtwitter.com links.

If you're a Twitter aficionado who loves sharing tweets on Discord, the FXTwitter Link Replacer extension is essential. This tool streamlines and enhances your Twitter sharing on Discord by optimizing the appearance of Twitter links. Simply hit the share button, click 'copy link,' and let the extension take over—it automatically transforms the URL to fxtwitter.com, ensuring a far superior display on Discord!                    

Основная информация о расширении

Название FxTwitter Embeds Fixer for Discord FxTwitter Embeds Fixer for Discord
ID ogmkfillcnchpbgglmjomkmaepehidoc
Официальный URL https://chromewebstore.google.com/detail/fxtwitter-embeds-fixer-fo/ogmkfillcnchpbgglmjomkmaepehidoc
Описание Fix broken Twitter/X embeds!
Размер файла 32.26 KB
Количество установок 32
Текущая Версия 0.0.1
Последнее Обновление 2024-01-03
Дата публикации 2024-01-03
Рейтинг 5.00/5 Всего 3 оценок
Разработчик yigitaltunay
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://www.privacypolicytemplate.net/live.php?token=7K29LKztmS5hgerPdw0ZO88pH8WKzs6m
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "FxTwitter Embeds Fixer for Discord",
    "version": "0.0.1",
    "description": "Fix broken Twitter\/X embeds!",
    "action": {
        "default_icon": "icons\/logo.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "128": "icons\/128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "copy.png"
            ],
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/twitter.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ]
}