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文件

下载Clipy: AI-Powered YouTube Video Search扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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": []
        }
    ]
}