ShutUpHLTV
Silences some annoying ads on the site
Что такое ShutUpHLTV?
ShutUpHLTV - это расширение Chrome, разработанное ncla, и его основная функция - "Silences some annoying ads on the site".
Скачать файл CRX расширения ShutUpHLTV
Скачайте файлы расширений ShutUpHLTV в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
- Blocks site from opening new tabs when you click on the background ad
- Removes/hides ads that are custom made to avoid common ad-blocking blacklists
- Removes 'Sponsors' blocks
The code is open source, free for anyone to look and contribute
https://github.com/ncla/ShutUpHLTV/ Основная информация о расширении
| Название | |
| ID | khpkkmidcgmonalkkmhopbbnndeijebi |
| Официальный URL | https://chromewebstore.google.com/detail/shutuphltv/khpkkmidcgmonalkkmhopbbnndeijebi |
| Описание | Silences some annoying ads on the site |
| Размер файла | 33.08 KB |
| Количество установок | 117 |
| Текущая Версия | 1.0.4 |
| Последнее Обновление | 2016-09-19 |
| Дата публикации | 2016-09-19 |
| Рейтинг | 5.00/5 Всего 11 оценок |
| Разработчик | ncla |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "ShutUpHLTV",
"version": "1.0.4",
"manifest_version": 2,
"description": "Silences some annoying ads on the site",
"homepage_url": "http:\/\/github.com\/ncla\/ShutUpHLTV",
"permissions": [
"*:\/\/*.hltv.org\/*",
"webRequest",
"webRequestBlocking",
"tabs"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.hltv.org\/*"
],
"js": [
"vendors\/jquery\/jquery-2.1.4.min.js",
"contentscript.js"
],
"run_at": "document_start"
}
]
} | |