Adblocker for Hotstar

Blocks Ads on Hotstar and YT

Что такое Adblocker for Hotstar?

Adblocker for Hotstar - это расширение Chrome, разработанное abhijeetanil18, и его основная функция - "Blocks Ads on Hotstar and YT".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Adblocker for Hotstar

Скачайте файлы расширений Adblocker for Hotstar в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Adblock for Hotstar

Install the Hotstar Adblocker extension to remove ads from hotstar for free. Yes watch hotstar favorite shows and movies without ads. Now the extension also blocks ads on multiple platforms like Hotstar and Youtube pages.

Step:
1. Install the Hotstar Adblocker Extension.
2. Thats it and your hotstar is now without ads                    

Основная информация о расширении

Название Adblocker for Hotstar Adblocker for Hotstar
ID pjdceihncicancgcmajdigmlejhdkfcf
Официальный URL https://chromewebstore.google.com/detail/adblocker-for-hotstar/pjdceihncicancgcmajdigmlejhdkfcf
Описание Blocks Ads on Hotstar and YT
Размер файла 16.01 KB
Количество установок 2,655
Текущая Версия 1.1
Последнее Обновление 2023-05-12
Дата публикации 2022-09-06
Рейтинг 4.36/5 Всего 25 оценок
Разработчик abhijeetanil18
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Adblocker for Hotstar",
    "version": "1.1",
    "description": "Blocks Ads on Hotstar and YT",
    "background": {
        "service_worker": "background\/background.js"
    },
    "manifest_version": 3,
    "permissions": [
        "declarativeNetRequest",
        "declarativeNetRequestWithHostAccess",
        "declarativeNetRequestFeedback",
        "storage"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "rules",
                "enabled": true,
                "path": "blocklist.json"
            }
        ]
    },
    "icons": {
        "128": "hotstaradblocker128.png"
    },
    "action": {
        "default_icon": "hotstaradblocker128.png",
        "default_title": "Adblocker for Hotstar"
    },
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/content.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ]
}