Hotstar Party

Watch Hotstar remotely with friends

Что такое Hotstar Party?

Hotstar Party - это расширение Chrome, разработанное Aman Agrawal, и его основная функция - "Watch Hotstar remotely with friends".

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

screenshot
screenshot

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

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

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

                        A chrome extension to watch Hotstar in sync with friends while chatting                    

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

Название Hotstar Party Hotstar Party
ID olmhpmmnnndoibgepihekkkjbohmfpdo
Официальный URL https://chromewebstore.google.com/detail/hotstar-party/olmhpmmnnndoibgepihekkkjbohmfpdo
Описание Watch Hotstar remotely with friends
Размер файла 140 KB
Количество установок 629
Текущая Версия 0.1
Последнее Обновление 2020-08-10
Дата публикации 2020-08-10
Рейтинг 3.00/5 Всего 2 оценок
Разработчик Aman Agrawal
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "version": "0.1",
    "default_locale": "en",
    "description": "__MSG_extDescription__",
    "permissions": [
        "activeTab",
        "declarativeContent"
    ],
    "page_action": {
        "default_title": "__MSG_extName__",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.hotstar.com\/*"
            ],
            "js": [
                "jquery.js",
                "socket.io-client.js",
                "pnglib.js",
                "identicon.js",
                "sha-256.js"
            ]
        }
    ]
}