Googloc
Make Google your homepage.
Wat is Googloc?
Googloc is een Chrome-extensie ontwikkeld door googloc, en de belangrijkste functie is "Make Google your homepage.".
Extensie Screenshots
Download het CRX-bestand van de extensie Googloc
Download Googloc-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
With our extension you can easily include the Google search field as the home page of your internet browser.
Basisinformatie over de Extensie
Naam | Googloc |
ID | diocplhbopconlojegclklkndekekaki |
Officiële URL | https://chromewebstore.google.com/detail/googloc/diocplhbopconlojegclklkndekekaki |
Beschrijving | Make Google your homepage. |
Bestandsgrootte | 598 KB |
Aantal Installaties | 478 |
Huidige Versie | 2.0.5 |
Laatst Bijgewerkt | 2022-11-02 |
Publicatiedatum | 2022-08-09 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | googloc |
[email protected] | |
Betalingswijze | free |
URL van de Privacybeleid Pagina | https://www.googloc.com/politicas |
Ondersteunde Talen | pt-BR |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Googloc", "description": "Make Google your homepage.", "version": "2.0.5", "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\/" ] }, "web_accessible_resources": [ { "resources": [ "\/imagens\/empty.jpg" ], "matches": [ "https:\/\/googloc.com\/*", "https:\/\/www.googloc.com\/*", "https:\/\/*.googloc.com\/*" ] } ], "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" } } |