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文件

下載Ad Blocking Power擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
            ]
        }
    ]
}