Twitter Bird

Extension which returns the Twitter bird icon back

Что такое Twitter Bird?

Twitter Bird - это расширение Chrome, разработанное https://cking.software, и его основная функция - "Extension which returns the Twitter bird icon back".

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

screenshot

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

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

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

                        Replaces the main Twitter icon and favicon icon with the canonical Bird. Opensource project.                    

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

Название Twitter Bird Twitter Bird
ID ihahjhhimifemcpmbghgjmniofjchmlh
Официальный URL https://chromewebstore.google.com/detail/twitter-bird/ihahjhhimifemcpmbghgjmniofjchmlh
Описание Extension which returns the Twitter bird icon back
Размер файла 553 KB
Количество установок 196
Текущая Версия 1.1
Последнее Обновление 2023-08-29
Дата публикации 2023-07-26
Рейтинг 4.00/5 Всего 3 оценок
Разработчик https://cking.software
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/Semper-Viventem/twitter-bird
URL страницы помощи https://github.com/Semper-Viventem/twitter-bird/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Twitter Bird",
    "description": "Extension which returns the Twitter bird icon back",
    "version": "1.1",
    "action": {
        "default_icon": "images\/icon_512.png"
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/content.js"
            ],
            "css": [
                "content.css"
            ],
            "matches": [
                "https:\/\/twitter.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*"
            ],
            "matches": [
                "https:\/\/twitter.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png",
        "512": "images\/icon_128.png"
    }
}