Bring the Twitter Bird Back

A simple Chrome extension to bring the Twitter bird everyone loves back to the Twitter website.

¿Qué es Bring the Twitter Bird Back?

Bring the Twitter Bird Back es una extensión de Chrome desarrollada por y4nci, y su función principal es "A simple Chrome extension to bring the Twitter bird everyone loves back to the Twitter website.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Bring the Twitter Bird Back

Descarga archivos de extensión Bring the Twitter Bird Back en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        We all miss the iconic Twitter bird right? Here is an extension for you to bring the bird back. The only thing you need to do is to install the extension and let it do its job!

If you have any issues, or something's broken, you can open an issue here: https://github.com/y4nci/bring-twitter-bird-back/issues.

Special thanks to my sponsors, Görkem and Murat for their support.                    

Información Básica de la Extensión

Nombre Bring the Twitter Bird Back Bring the Twitter Bird Back
ID digdceeidmgbnjlmgjjcnndacaaobfgk
URL Oficial https://chromewebstore.google.com/detail/bring-the-twitter-bird-ba/digdceeidmgbnjlmgjjcnndacaaobfgk
Descripción A simple Chrome extension to bring the Twitter bird everyone loves back to the Twitter website.
Tamaño del Archivo 18.82 KB
Cantidad de Instalaciones 288
Versión Actual 0.2
Última Actualización 2023-08-29
Fecha de Publicación 2023-08-04
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador y4nci
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Bring the Twitter Bird Back",
    "version": "0.2",
    "author": "Baran Yanc\u0131",
    "description": "A simple Chrome extension to bring the Twitter bird everyone loves back to the Twitter website.",
    "host_permissions": [
        "*:\/\/*.twitter.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/images\/*"
            ],
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "scripting",
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "images\/icons\/light16.png",
            "32": "images\/icons\/light32.png"
        },
        "default_title": "Bring the Twitter Bird Back",
        "theme_icons": [
            {
                "light": "images\/icons\/light16.png",
                "dark": "images\/icons\/dark16.png",
                "size": 16
            },
            {
                "light": "images\/icons\/light32.png",
                "dark": "images\/icons\/dark32.png",
                "size": 32
            }
        ]
    }
}