Ad Blocking Power

Show an Old Spice ad instead of a normal ad.

Ad Blocking Power란 무엇입니까?

Ad Blocking Power은(는) Chapter 7 Certified에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show an Old Spice ad instead of a normal ad."입니다.

확장 프로그램 스크린샷

screenshot

Ad Blocking Power 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension replaces image ads on the web with Terry Crews and Old Spice images.

Not affiliated with Terry Crews or Old Spice.

Based off of the Doge Ad Blocker: https://github.com/grevory/doge-ad-blocker-chrome-extension                    

확장 프로그램 기본 정보

이름 Ad Blocking Power Ad Blocking Power
ID najdbfgcbeanghldlcndgjhiemobnmof
공식 URL https://chromewebstore.google.com/detail/ad-blocking-power/najdbfgcbeanghldlcndgjhiemobnmof
설명 Show an Old Spice ad instead of a normal ad.
파일 크기 105 KB
설치 횟수 472
현재 버전 0.1
최근 업데이트 2016-01-11
출시 날짜 2016-01-11
평점 4.10/5 총 10 개의 평점
개발자 Chapter 7 Certified
결제 유형 free
확장 프로그램 웹 사이트 http://www.chapter7certified.tk
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ad Blocking Power",
    "description": "Show an Old Spice ad instead of a normal ad.",
    "author": "Liam Mills",
    "version": "0.1",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "icons\/power-ad-blocker-16.png",
        "48": "icons\/power-ad-blocker-48.png",
        "128": "icons\/power-ad-blocker-128.png"
    },
    "browser_action": {
        "default_icon": "icons\/power-ad-blocker-19.png",
        "default_title": "Power Ad Blocker Settings",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "power-ad-replacer.js"
            ]
        }
    ]
}