YipYip

Never touch your mouse again!

Was ist YipYip?

YipYip ist eine Chrome-Erweiterung, die von Comake, Inc. entwickelt wurde, und ihr Hauptmerkmal ist "Never touch your mouse again!".

Erweiterungsscreenshots

screenshot

YipYip-Erweiterungs-CRX-Datei herunterladen

Laden Sie YipYip-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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. 💨🦬                    

Grundlegende Informationen zur Erweiterung

Name YipYip YipYip
ID flbkmacappdledphgdoolmenldginemg
Offizielle URL https://chromewebstore.google.com/detail/yipyip/flbkmacappdledphgdoolmenldginemg
Beschreibung Never touch your mouse again!
Dateigröße 467 KB
Installationsanzahl 106
Aktuelle Version 1.3.0
Letztes Update 2021-10-19
Veröffentlichungsdatum 2021-10-10
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Comake, Inc.
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://yip-yip.com/
URL der Datenschutzrichtlinien-Seite https://comake.io/privacy
Unterstützte Sprachen 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": [
        "*:\/\/*\/*"
    ]
}