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 |
| 官方網址 | 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"
}
} | |