FXTwitter copy

Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice.

Что такое FXTwitter copy?

FXTwitter copy - это расширение Chrome, разработанное DJPiplup, и его основная функция - "Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice.".

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

screenshot

Скачать файл CRX расширения FXTwitter copy

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

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

                        The twitter and x links you copy will be automatically converted to fxtwitter or whatever you decide to point them to. As of 2.0, you can also add embed fixers for any sites you want.                    

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

Название FXTwitter copy FXTwitter copy
ID pdkppfndmdlnihpchfdjcglkangjfgea
Официальный URL https://chromewebstore.google.com/detail/fxtwitter-copy/pdkppfndmdlnihpchfdjcglkangjfgea
Описание Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice.
Размер файла 8.14 KB
Количество установок 77
Текущая Версия 2.0
Последнее Обновление 2023-11-27
Дата публикации 2023-10-20
Разработчик DJPiplup
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "FXTwitter copy",
    "description": "Changes all twitter links to fx links as you copy them, configurable to your embed fixer of choice.",
    "version": "2.0",
    "action": {
        "default_popup": "config.html",
        "default_icon": "icon.png"
    },
    "permissions": [
        "storage",
        "contextMenus",
        "clipboardWrite"
    ],
    "content_scripts": [
        {
            "js": [
                "watcher.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}