Clipy: AI-Powered YouTube Video Search

Search through videos of any language, find the most relevant clips and timestamp to them using AI.

Clipy: AI-Powered YouTube Video Search란 무엇입니까?

Clipy: AI-Powered YouTube Video Search은(는) https://getclipy.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Search through videos of any language, find the most relevant clips and timestamp to them using AI."입니다.

확장 프로그램 스크린샷

screenshot

Clipy: AI-Powered YouTube Video Search 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Get ready to search like never before ⚡

Powered by AI, Clipy allows you to search for timestamps in videos using the meaning of your words, instead of just keywords. It is also multilingual so you can search for meaning via English, Arabic, French videos or any language. As long as meaning is the same, language shouldn't matter. 

It understands your search intent AND meaning and finds the most relevant parts of the video in seconds! Never waste hours searching for a clip again!

Clipy is FREE for videos up to 30 minutes

Save 100s of hours all for the price of ☕️ !

Thank you for being part of the next-generation of search!

Enjoy!

Made with 🧡 by the Clipy team.                    

확장 프로그램 기본 정보

이름 Clipy: AI-Powered YouTube Video Search Clipy: AI-Powered YouTube Video Search
ID nkkklchgjghdppjfponpogcfgggchjef
공식 URL https://chromewebstore.google.com/detail/clipy-ai-powered-youtube/nkkklchgjghdppjfponpogcfgggchjef
설명 Search through videos of any language, find the most relevant clips and timestamp to them using AI.
파일 크기 283 KB
설치 횟수 886
현재 버전 1.0.6
최근 업데이트 2024-02-21
출시 날짜 2023-05-11
평점 4.10/5 총 10 개의 평점
개발자 https://getclipy.com
이메일 [email protected]
결제 유형 in_app
확장 프로그램 웹 사이트 https://getclipy.com
개인정보 보호 정책 페이지 URL https://skm.alonesolutions.ca/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Clipy: AI-Powered YouTube Video Search",
    "description": "Search through videos of any language, find the most relevant clips and timestamp to them using AI.",
    "version": "1.0.6",
    "manifest_version": 3,
    "action": {
        "default_title": "Clipy",
        "default_icon": {
            "32": "assets\/images\/icon-34.png",
            "128": "assets\/images\/icon-128.png"
        }
    },
    "icons": {
        "32": "assets\/images\/icon-34.png",
        "128": "assets\/images\/icon-128.png"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "background": {
        "service_worker": "serviceWorker.js"
    },
    "permissions": [
        "tabs",
        "storage",
        "identity"
    ],
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "assets\/js\/lib\/jquery.min.js",
                "content\/js\/content.js",
                "content\/js\/font-awesome.js"
            ],
            "css": [
                "\/content\/css\/content.css"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/images\/*"
            ],
            "matches": [
                ""
            ],
            "extension_ids": []
        }
    ]
}