Googloc
Make Google your homepage.
Googlocとは何ですか?
Googlocはgooglocによって開発されたChromeの拡張機能で、その主な機能は「Make Google your homepage.」です。
拡張機能のスクリーンショット
Googloc拡張機能のCRXファイルをダウンロード
Googloc拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
With our extension you can easily include the Google search field as the home page of your internet browser. 拡張機能の基本情報
| 名前 | |
| ID | diocplhbopconlojegclklkndekekaki |
| 公式URL | https://chromewebstore.google.com/detail/googloc/diocplhbopconlojegclklkndekekaki |
| 説明 | Make Google your homepage. |
| ファイルサイズ | 598 KB |
| インストール数 | 478 |
| 現在のバージョン | 2.0.5 |
| 最終更新日 | 2022-11-02 |
| 公開日 | 2022-08-09 |
| 評価 | 5.00/5 合計 1 レビュー |
| 開発者 | googloc |
| Eメール | [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": "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"
}
} | |