Initial

Easily include Google on the homepage with relevant results in your searches.

Vad är Initial?

Initial är en Chrome-tillägg utvecklad av https://googloc.com, och dess huvudfunktion är "Easily include Google on the homepage with relevant results in your searches.".

Tilläggsskärmbilder

screenshot

Ladda ner Initial-förlängningens CRX-fil

Ladda ner Initial-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

                        With our extension you can easily include the Google search field as the home page of your internet browser.                    

Grundläggande Information om Tillägg

Namn Initial Initial
ID indkpcjdonlhakljicagikchdooafijm
Officiell webbadress https://chromewebstore.google.com/detail/initial/indkpcjdonlhakljicagikchdooafijm
Beskrivning Easily include Google on the homepage with relevant results in your searches.
Filstorlek 611 KB
Antal Installationer 2,826
Aktuell Version 2.0
Senast Uppdaterad 2024-01-15
Publiceringsdatum 2022-08-05
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare https://googloc.com
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://www.googloc.com/politicas
Stödda Språk pt-BR
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Initial",
    "description": "Easily include Google on the homepage with relevant results in your searches.",
    "version": "2.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/search?*",
                "https:\/\/www.google.com.br\/search?*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "chrome_settings_overrides": {
        "startup_pages": [
            "https:\/\/googloc.com\/google\/"
        ]
    },
    "icons": {
        "16": "imagens\/icon_16px.png",
        "32": "imagens\/icon_32px.png",
        "96": "imagens\/icon_96px.png",
        "48": "imagens\/icon_48px.png",
        "128": "imagens\/icon_128px.png"
    }
}