You.com | Search, chat, and create with AI

Experience the future of search with generative AI

Что такое You.com | Search, chat, and create with AI?

You.com | Search, chat, and create with AI - это расширение Chrome, разработанное https://you.com, и его основная функция - "Experience the future of search with generative AI".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения You.com | Search, chat, and create with AI

Скачайте файлы расширений You.com | Search, chat, and create with AI в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        ⚡ Search less, find and create more with generative AI apps supercharging your search and helping you write better, code better, and design better.

🪄 At You.com, we believe that you should control your search experience without compromising your privacy. Our extension allows you to:

• Set You.com's chat experience (YouChat) or traditional experience as your default search engine to experience the future of search now or set it to Google
• Quickly access generative AI apps powered by our own LLM, OpenAI models (such as GPT-4), and Stable Diffusion to write, code, and design
• Choose You.com and get protection from being tracked online and having your data from being sold to advertisers

Note: Upon installation, this extension changes your browser's default search engine to You.com. This can be changed to another default search engine easily after installation by clicking on the extension.

🔍 Search across 3 different search engines with this extension:

• You.com: a private search engine without privacy-invading ads that you can customize with 150+ apps
• YouChat: a conversational AI interface to get answers and generate content with the power of cutting-edge artificial intelligence
• And Google, if you're not ready to use You.com as your default but want quick access to it

✨ You.com Features

• PRIVACY FIRST: Install this extension, and we'll set your default search engine to You.com on Chrome. Although the extension asks for specific permissions, those will only be used to set your default search engine and protect you from being tracked online, privacy-invading ads, and data sharing. The extension is open-source, so you can verify the permissions we are asking for. We also offer a private, zero-trace mode and a default manual setup.
• CUSTOMIZE YOUR SEARCH EXPERIENCE with 200+ sources (apps). Choose what you want to see by clicking "thumbs up" on sources like Medium, Reddit, etc, and we'll prioritize them in your results.
• ACCOMPLISH MORE, FASTER: Use time-saving generative AI apps like YouWrite, Code Complete, and YouImagine to have AI write an essay or code snippet for you.
• Use !bangs shortcuts to instantly search other sites from the address bar.

Enjoying the Chrome extension? Please leave us a 5-star rating and review.

💡 More About You.com

You.com, founded in 2020 by top AI research scientists, Richard Socher and Bryan McCann, is a revolutionary AI chatbot and search engine. You.com uses a Large Language Model (LLM) to deliver personalized responses to queries with human-like replies. Its AI tools (YouChat, YouWrite, and YouImagine) provide efficient web search, content and image creation, and code generation. With advanced machine learning, You.com streamlines answer to complex questions, aids in tasks, and supports research with citations and up-to-date information, enhancing productivity and saving time. Additionally, You.com provides an all-in-one AI toolkit with YouPro, a subscription service offering unlimited access to the latest AI chat and generative AI writing and image tools at an affordable price and within an intuitive interface.                    

Основная информация о расширении

Название You.com | Search, chat, and create with AI You.com | Search, chat, and create with AI
ID fhplnehgjpmohhldfnjhibanpbiedofi
Официальный URL https://chromewebstore.google.com/detail/youcom-search-chat-and-cr/fhplnehgjpmohhldfnjhibanpbiedofi
Описание Experience the future of search with generative AI
Размер файла 239 KB
Количество установок 198,757
Текущая Версия 0.0.0.6
Последнее Обновление 2023-10-26
Дата публикации 2022-06-17
Рейтинг 4.05/5 Всего 55 оценок
Разработчик https://you.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://you.com/
URL страницы помощи https://about.you.com
URL страницы политики конфиденциальности https://you.com/legal/privacy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "You.com | Search, chat, and create with AI",
    "manifest_version": 3,
    "version": "0.0.0.6",
    "description": "Experience the future of search with generative AI",
    "action": {
        "default_popup": "index.html",
        "default_title": "Open the popup"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/static\/js\/content.js"
            ]
        }
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": false,
                "path": "rules_1.json"
            },
            {
                "id": "ruleset_2",
                "enabled": true,
                "path": "rules_2.json"
            },
            {
                "id": "ruleset_3",
                "enabled": false,
                "path": "rules_3.json"
            },
            {
                "id": "ruleset_4",
                "enabled": false,
                "path": "rules_4.json"
            }
        ]
    },
    "permissions": [
        "declarativeNetRequestWithHostAccess",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icons\/favicon-16x16.png",
        "48": "icons\/favicon-48x48.png",
        "128": "icons\/favicon-128x128.png"
    },
    "chrome_settings_overrides": {
        "search_provider": {
            "name": "you.com",
            "keyword": "you.com",
            "search_url": "https:\/\/you.com\/default\/search?q={searchTerms}",
            "suggest_url": "https:\/\/you.com\/api\/ac?q={searchTerms}",
            "favicon_url": "https:\/\/you.com\/favicon\/favicon.ico",
            "encoding": "UTF-8",
            "is_default": true
        }
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/localhost\/*",
            "*:\/\/you.com\/*",
            "*:\/\/*.you.com\/*"
        ]
    }
}