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

Experience the future of search with generative AI

Was ist You.com | Search, chat, and create with AI?

You.com | Search, chat, and create with AI ist eine Chrome-Erweiterung, die von https://you.com entwickelt wurde, und ihr Hauptmerkmal ist "Experience the future of search with generative AI".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

You.com | Search, chat, and create with AI-Erweiterungs-CRX-Datei herunterladen

Laden Sie You.com | Search, chat, and create with AI-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

                        ⚡ 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.                    

Grundlegende Informationen zur Erweiterung

Name You.com | Search, chat, and create with AI You.com | Search, chat, and create with AI
ID fhplnehgjpmohhldfnjhibanpbiedofi
Offizielle URL https://chromewebstore.google.com/detail/youcom-search-chat-and-cr/fhplnehgjpmohhldfnjhibanpbiedofi
Beschreibung Experience the future of search with generative AI
Dateigröße 239 KB
Installationsanzahl 198,757
Aktuelle Version 0.0.0.6
Letztes Update 2023-10-26
Veröffentlichungsdatum 2022-06-17
Bewertung 4.05/5 Insgesamt 55 Bewertungen
Entwickler https://you.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://you.com/
Hilfeseite URL https://about.you.com
URL der Datenschutzrichtlinien-Seite https://you.com/legal/privacy
Unterstützte Sprachen 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\/*"
        ]
    }
}