YipYip

Never touch your mouse again!

YipYip란 무엇입니까?

YipYip은(는) Comake, Inc.에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Never touch your mouse again!"입니다.

확장 프로그램 스크린샷

screenshot

YipYip 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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

확장 프로그램 기본 정보

이름 YipYip YipYip
ID flbkmacappdledphgdoolmenldginemg
공식 URL https://chromewebstore.google.com/detail/yipyip/flbkmacappdledphgdoolmenldginemg
설명 Never touch your mouse again!
파일 크기 467 KB
설치 횟수 106
현재 버전 1.3.0
최근 업데이트 2021-10-19
출시 날짜 2021-10-10
평점 5.00/5 총 1 개의 평점
개발자 Comake, Inc.
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://yip-yip.com/
개인정보 보호 정책 페이지 URL https://comake.io/privacy
지원되는 언어 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": [
        "*:\/\/*\/*"
    ]
}