Initial
Easily include Google on the homepage with relevant results in your searches.
什么是Initial?
Initial是由https://googloc.com开发的Chrome扩展程序,该扩展的主要功能是“Easily include Google on the homepage with relevant results in your searches.”。
扩展截图
下载Initial扩展crx文件
下载Initial扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
With our extension you can easily include the Google search field as the home page of your internet browser. 扩展基本信息
| 名称 | |
| 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"
}
} | |