Ad Blocking Power
Show an Old Spice ad instead of a normal ad.
Что такое Ad Blocking Power?
Ad Blocking Power - это расширение Chrome, разработанное Chapter 7 Certified, и его основная функция - "Show an Old Spice ad instead of a normal ad.".
Снимки экрана расширения
Скачать файл CRX расширения Ad Blocking Power
Скачайте файлы расширений 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
Основная информация о расширении
Название | |
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" ] } ] } |