ChatGPT For Google

Can't find what you're looking for with Google? Ask an artificial intelligence instead.

Vad är ChatGPT For Google?

ChatGPT For Google är en Chrome-tillägg utvecklad av rgantzos, och dess huvudfunktion är "Can't find what you're looking for with Google? Ask an artificial intelligence instead.".

Tilläggsskärmbilder

screenshot

Ladda ner ChatGPT For Google-förlängningens CRX-fil

Ladda ner ChatGPT For Google-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Sometimes it can be hard to articulate what you're looking for to the extent that Google understands what you're saying, and can sometimes find the right results. In those cases, GoogleGPT is here for you. You can easily click a button on the Google search page to replace the search bar with a ChatGPT input.                    

Grundläggande Information om Tillägg

Namn ChatGPT For Google ChatGPT For Google
ID jgpockpcjdfkmaiiefcbfjaaekocfmha
Officiell webbadress https://chromewebstore.google.com/detail/chatgpt-for-google/jgpockpcjdfkmaiiefcbfjaaekocfmha
Beskrivning Can't find what you're looking for with Google? Ask an artificial intelligence instead.
Filstorlek 49.32 KB
Antal Installationer 26
Aktuell Version 0.0.1
Senast Uppdaterad 2023-03-06
Publiceringsdatum 2023-03-05
Utvecklare rgantzos
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://docs.scratchtools.app/docs/privacy-policy
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT For Google",
    "short_name": "GoogleGPT",
    "manifest_version": 3,
    "version": "0.0.1",
    "version_name": "0.0.1",
    "description": "Can't find what you're looking for with Google? Ask an artificial intelligence instead.",
    "author": "Ronan",
    "host_permissions": [
        "https:\/\/www.google.com\/*"
    ],
    "action": {
        "default_icon": "\/logo.png",
        "default_popup": "\/popup.html",
        "default_title": "GoogleGPT"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/*"
            ],
            "js": [
                "ask.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "icons": {
        "16": "\/logo.png",
        "48": "\/logo.png",
        "128": "\/logo.png"
    }
}