Google Ads Hider

Hide Google search ads

Google Ads Hider란 무엇입니까?

Google Ads Hider은(는) Yui에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hide Google search ads"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Google Ads Hider 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Google Ads Hider is a browser extension designed to enhance your Google search experience. With a simple click on the extension's icon, you can easily toggle between hiding and displaying ads on your Google search results. By default, upon installation, ads will be hidden.                    

확장 프로그램 기본 정보

이름 Google Ads Hider Google Ads Hider
ID ngiebklmehgbkilagngnkeppmncackol
공식 URL https://chromewebstore.google.com/detail/google-ads-hider/ngiebklmehgbkilagngnkeppmncackol
설명 Hide Google search ads
파일 크기 7.09 MB
설치 횟수 63
현재 버전 1.0
최근 업데이트 2023-08-24
출시 날짜 2023-08-24
평점 5.00/5 총 1 개의 평점
개발자 Yui
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Google Ads Hider",
    "version": "1.0",
    "description": "Hide Google search ads",
    "permissions": [
        "storage",
        "activeTab"
    ],
    "background": {
        "service_worker": "dist\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.google.com\/*",
                "*:\/\/www.google.co.jp\/*",
                "*:\/\/www.google.co.uk\/*"
            ],
            "js": [
                "dist\/content.js"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "active.png",
            "48": "active.png",
            "128": "active.png"
        }
    },
    "icons": {
        "16": "active.png",
        "48": "active.png",
        "128": "active.png"
    }
}