YipYip

Never touch your mouse again!

¿Qué es YipYip?

YipYip es una extensión de Chrome desarrollada por Comake, Inc., y su función principal es "Never touch your mouse again!".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión YipYip

Descarga archivos de extensión YipYip 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

                        HOW TO USE:

1️⃣ YipYip is an always-on search assistant that turns Gmail (and any other website) into a keyboard-first product.

2️⃣ Just type to search.

3️⃣ YipYip highlights any buttons or links in the page matching your search.

4️⃣ Press Tab to jump through the matches.

5️⃣ Press Enter to select the current match.

🎉 Voila!

---------------

PRIVACY PROMISE:

YipYip only tracks who has the extension installed and how often it is used. It will NEVER track or store your queries or which websites you visit. The project is open source on GitHub so you can verify this yourself.

---------------

OPEN SOURCE:

○ Contribute on GitHub: https://github.com/comake/yip-yip
○ Submit suggestions: https://comake1.typeform.com/to/auw8nYZg
○ Join the community: https://discord.com/invite/CnaC38Ch2p

---------------

Name inspired by Avatar the last Airbender. 💨🦬                    

Información Básica de la Extensión

Nombre YipYip YipYip
ID flbkmacappdledphgdoolmenldginemg
URL Oficial https://chromewebstore.google.com/detail/yipyip/flbkmacappdledphgdoolmenldginemg
Descripción Never touch your mouse again!
Tamaño del Archivo 467 KB
Cantidad de Instalaciones 106
Versión Actual 1.3.0
Última Actualización 2021-10-19
Fecha de Publicación 2021-10-10
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador Comake, Inc.
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://yip-yip.com/
URL de la Página de Política de Privacidad https://comake.io/privacy
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YipYip",
    "short_name": "YipYip",
    "version": "1.3.0",
    "description": "Never touch your mouse again!",
    "manifest_version": 3,
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "\/static\/css\/content.css"
            ],
            "js": [
                "\/static\/js\/content.js"
            ],
            "all_frames": false,
            "run_at": "document_idle"
        }
    ],
    "action": {
        "default_icon": {
            "16": "logo-16.png",
            "24": "logo-24.png",
            "32": "logo-32.png",
            "48": "logo-48.png",
            "64": "logo-64.png",
            "128": "logo-128.png",
            "192": "logo-192.png"
        },
        "default_title": "Search with YipYip!"
    },
    "icons": {
        "16": "logo-16.png",
        "24": "logo-24.png",
        "32": "logo-32.png",
        "48": "logo-48.png",
        "64": "logo-64.png",
        "128": "logo-128.png",
        "192": "logo-192.png"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}