LabelsBase.Beatport
Identify record labels on Beatport which are available on LabelsBase
Vad är LabelsBase.Beatport?
LabelsBase.Beatport är en Chrome-tillägg utvecklad av Denis Brazhnikov, och dess huvudfunktion är "Identify record labels on Beatport which are available on LabelsBase".
Tilläggsskärmbilder
Ladda ner LabelsBase.Beatport-förlängningens CRX-fil
Ladda ner LabelsBase.Beatport-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | hmnnmkppfllhndkjcpdiobhlkpkanace |
| Officiell webbadress | https://chromewebstore.google.com/detail/labelsbasebeatport/hmnnmkppfllhndkjcpdiobhlkpkanace |
| Beskrivning | Identify record labels on Beatport which are available on LabelsBase |
| Filstorlek | 8.52 KB |
| Antal Installationer | 204 |
| Aktuell Version | 0.0.0.5 |
| Senast Uppdaterad | 2020-10-13 |
| Publiceringsdatum | 2019-02-03 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | Denis Brazhnikov |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://labelsbase.net |
| URL till Sekretesspolicy Sidan | https://labelsbase.net/privacy |
| Stödda Språk | 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"
]
} | |