Dbased - based Dlive
add some cool features to Dlive
什么是Dbased - based Dlive?
Dbased - based Dlive是由zoomerdev开发的Chrome扩展程序,该扩展的主要功能是“add some cool features to Dlive”。
扩展截图
下载Dbased - based Dlive扩展crx文件
下载Dbased - based Dlive扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Dbased, the Dlive companion. Add some cool features to Dlive, including adding unlimited stickers. More coming soon! 扩展基本信息
| 名称 | |
| ID | bjnemjdjapmakafpckmbdanhglffgpoc |
| 官方URL | https://chromewebstore.google.com/detail/dbased-based-dlive/bjnemjdjapmakafpckmbdanhglffgpoc |
| 简介 | add some cool features to Dlive |
| 文件大小 | 141 KB |
| 安装次数 | 741 |
| 当前版本 | 1.1.1 |
| 更新时间 | 2020-10-06 |
| 上架时间 | 2020-07-02 |
| 评分 | 4.26/5 共23次评分 |
| 开发者 | zoomerdev |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://zoomerdev.github.io/dbased |
| 帮助页面URL | https://github.com/zoomerdev/dbased/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Dbased - based Dlive",
"version": "1.1.1",
"description": "add some cool features to Dlive",
"permissions": [
"storage",
"*:\/\/graphigo.prd.dlive.tv\/*"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"web_accessible_resources": [
"assets\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/dlive.tv\/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"icons": {
"64": "assets\/logo_small-e277afc9db01f0ccd31bef76efb48dee.png",
"128": "assets\/[email protected]",
"256": "assets\/[email protected]"
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"browser_action": {
"default_popup": "popup.html"
}
} | |