Hotstar Party
Watch Hotstar remotely with friends
什么是Hotstar Party?
Hotstar Party是由Aman Agrawal开发的Chrome扩展程序,该扩展的主要功能是“Watch Hotstar remotely with friends”。
扩展截图
下载Hotstar Party扩展crx文件
下载Hotstar Party扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A chrome extension to watch Hotstar in sync with friends while chatting 扩展基本信息
| 名称 | |
| 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"
]
}
]
} | |