Bypass AdBlock Detection
Bypass Adblock Detection on Websites that Bombard You With Ads
Что такое Bypass AdBlock Detection?
Bypass AdBlock Detection - это расширение Chrome, разработанное Arif, и его основная функция - "Bypass Adblock Detection on Websites that Bombard You With Ads".
Снимки экрана расширения
Скачать файл CRX расширения Bypass AdBlock Detection
Скачайте файлы расширений Bypass AdBlock Detection в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This Addon helps you keep your ad-blocker active when you visit a website even when it asks you to disable it. This is the easiest way you can bypass ad block detection on a website. This addon work well with all adblock but For perfect use Please use it with ublock origin - Thanks
Основная информация о расширении
Название | Bypass AdBlock Detection |
ID | lppagnomjcaohgkfljlebenbmbdmbkdj |
Официальный URL | https://chromewebstore.google.com/detail/bypass-adblock-detection/lppagnomjcaohgkfljlebenbmbdmbkdj |
Описание | Bypass Adblock Detection on Websites that Bombard You With Ads |
Размер файла | 76.51 KB |
Количество установок | 57,497 |
Текущая Версия | 1.0.0 |
Последнее Обновление | 2018-11-01 |
Дата публикации | 2018-10-31 |
Рейтинг | 3.08/5 Всего 305 оценок |
Разработчик | Arif |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "background": { "scripts": [ "common.js", "platform\/chromium-vars.js", "background\/core.js", "background\/rules.js", "background\/debug.js" ] }, "browser_action": { "default_icon": { "128": "icon128.png" }, "default_title": "Bypass AdBlock Detection" }, "content_scripts": [ { "all_frames": true, "js": [ "common.js", "libdom.js", "content\/core.js", "content\/rules-common.js", "content\/rules-specific.js", "content\/rules-sticky.js", "content\/debug.js", "content\/ubo-extra.js" ], "match_about_blank": true, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start" } ], "name": "Bypass AdBlock Detection", "description": "Bypass Adblock Detection on Websites that Bombard You With Ads", "minimum_chrome_version": "63.0", "manifest_version": 2, "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "icons": { "128": "icon128.png" }, "incognito": "split", "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "tabs", "webNavigation", "webRequest", "webRequestBlocking" ], "version": "1.0.0", "web_accessible_resources": [ "resources\/*" ] } |