LabelsBase.Beatport
Identify record labels on Beatport which are available on LabelsBase
什么是LabelsBase.Beatport?
LabelsBase.Beatport是由Denis Brazhnikov开发的Chrome扩展程序,该扩展的主要功能是“Identify record labels on Beatport which are available on LabelsBase”。
扩展截图
下载LabelsBase.Beatport扩展crx文件
下载LabelsBase.Beatport扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The extension adds an icon near all the LabelsBase-available labels on beatport.com, so you can easily find the label contacts, links, description etc. 扩展基本信息
| 名称 | |
| ID | hmnnmkppfllhndkjcpdiobhlkpkanace |
| 官方URL | https://chromewebstore.google.com/detail/labelsbasebeatport/hmnnmkppfllhndkjcpdiobhlkpkanace |
| 简介 | Identify record labels on Beatport which are available on LabelsBase |
| 文件大小 | 8.52 KB |
| 安装次数 | 204 |
| 当前版本 | 0.0.0.5 |
| 更新时间 | 2020-10-13 |
| 上架时间 | 2019-02-03 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | Denis Brazhnikov |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://labelsbase.net |
| 隐私政策页面URL | https://labelsbase.net/privacy |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "LabelsBase.Beatport",
"short_name": "LabelsBase.Beatport",
"description": "Identify record labels on Beatport which are available on LabelsBase",
"version": "0.0.0.5",
"manifest_version": 2,
"browser_action": {
"default_icon": "icon.png"
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/*.beatport.com\/*"
],
"js": [
"magick.js"
],
"css": [
"style.css"
]
}
],
"permissions": [
"https:\/\/app.labelsbase.net\/chrome\/*"
],
"web_accessible_resources": [
"lb.svg"
]
} | |