WhackAMole Ad-Blocker

WhackAMole Ad-Blocker

WhackAMole Ad-Blocker란 무엇입니까?

WhackAMole Ad-Blocker은(는) https://chrislaffra.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "WhackAMole Ad-Blocker"입니다.

확장 프로그램 스크린샷

screenshot

WhackAMole Ad-Blocker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        WhackAMole removes ads from websites. To disable WhackAMole for a given site, click on the WhackAMole toolbar icon. When it finds content that looks like an ad, WhackAMole replaces it with an "ad" block. You can click on that to see the original content.

WhackAMole never connects to a server and never inspects the data on the sites you visit. Instead, it looks for elements that look like ads and hides them using a set of builtin rules. If you disable WhackAMole for a given site, that site's URL is stored in the local browser history on your machine. Other than that, WhackAMole does not store any data, does not analyze your sites, and does not track your browsing behavior at all. 

Happy browsing!                    

확장 프로그램 기본 정보

이름 WhackAMole Ad-Blocker WhackAMole Ad-Blocker
ID nipkfonkiamhioacopolknbjdaeejchp
공식 URL https://chromewebstore.google.com/detail/whackamole-ad-blocker/nipkfonkiamhioacopolknbjdaeejchp
설명 WhackAMole Ad-Blocker
파일 크기 41.34 KB
설치 횟수 496
현재 버전 3.10
최근 업데이트 2023-09-11
출시 날짜 2020-01-15
평점 4.25/5 총 4 개의 평점
개발자 https://chrislaffra.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://chrislaffra.com/whackamole
도움말 페이지 URL http://chrislaffra.com/whackamole
개인정보 보호 정책 페이지 URL https://chrislaffra.com/privacy.html
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WhackAMole Ad-Blocker",
    "short_name": "WhackAMole",
    "description": "WhackAMole Ad-Blocker",
    "version": "3.10",
    "permissions": [
        "activeTab",
        "storage",
        "scripting"
    ],
    "author": "Chris Laffra - [email protected]",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "contentscript.js"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "service_worker": "service_worker.js"
    },
    "manifest_version": 3,
    "action": {
        "default_icon": {
            "38": "cross.png"
        },
        "default_title": "Whack A Mole",
        "default_popup": "popup.html"
    },
    "content_security_policy": []
}