LabelsBase.Beatport
Identify record labels on Beatport which are available on LabelsBase
What is LabelsBase.Beatport?
LabelsBase.Beatport is a Chrome extension developed by Denis Brazhnikov, and its main feature is "Identify record labels on Beatport which are available on LabelsBase".
Extension Screenshots
Download LabelsBase.Beatport Extension CRX File
Download LabelsBase.Beatport extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | LabelsBase.Beatport |
ID | hmnnmkppfllhndkjcpdiobhlkpkanace |
Official URL | https://chromewebstore.google.com/detail/labelsbasebeatport/hmnnmkppfllhndkjcpdiobhlkpkanace |
Description | Identify record labels on Beatport which are available on LabelsBase |
File Size | 8.52 KB |
Installation Count | 204 |
Current Version | 0.0.0.5 |
Last Updated | 2020-10-13 |
Publish Date | 2019-02-03 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Denis Brazhnikov |
[email protected] | |
Payment Type | free |
Extension Website | https://labelsbase.net |
Privacy Policy Page URL | https://labelsbase.net/privacy |
Supported Languages | 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" ] } |