Initial
Easily include Google on the homepage with relevant results in your searches.
Что такое Initial?
Initial - это расширение Chrome, разработанное https://googloc.com, и его основная функция - "Easily include Google on the homepage with relevant results in your searches.".
Снимки экрана расширения
Скачать файл CRX расширения Initial
Скачайте файлы расширений Initial в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
With our extension you can easily include the Google search field as the home page of your internet browser.
Основная информация о расширении
Название | Initial |
ID | indkpcjdonlhakljicagikchdooafijm |
Официальный URL | https://chromewebstore.google.com/detail/initial/indkpcjdonlhakljicagikchdooafijm |
Описание | Easily include Google on the homepage with relevant results in your searches. |
Размер файла | 611 KB |
Количество установок | 2,826 |
Текущая Версия | 2.0 |
Последнее Обновление | 2024-01-15 |
Дата публикации | 2022-08-05 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | https://googloc.com |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы политики конфиденциальности | https://www.googloc.com/politicas |
Поддерживаемые языки | 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" } } |