Googloc

Make Google your homepage.

Googloc란 무엇입니까?

Googloc은(는) googloc에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Make Google your homepage."입니다.

확장 프로그램 스크린샷

screenshot

Googloc 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        With our extension you can easily include the Google search field as the home page of your internet browser.                    

확장 프로그램 기본 정보

이름 Googloc Googloc
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
이메일 [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"
    }
}