LabelsBase.Beatport
Identify record labels on Beatport which are available on LabelsBase
Co to jest LabelsBase.Beatport?
LabelsBase.Beatport to rozszerzenie Chrome opracowane przez Denis Brazhnikov, a jego główną funkcją jest „Identify record labels on Beatport which are available on LabelsBase”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia LabelsBase.Beatport
Pobierz pliki rozszerzeń LabelsBase.Beatport w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | hmnnmkppfllhndkjcpdiobhlkpkanace |
| Oficjalny URL | https://chromewebstore.google.com/detail/labelsbasebeatport/hmnnmkppfllhndkjcpdiobhlkpkanace |
| Opis | Identify record labels on Beatport which are available on LabelsBase |
| Rozmiar pliku | 8.52 KB |
| Liczba instalacji | 204 |
| Aktualna Wersja | 0.0.0.5 |
| Ostatnia Aktualizacja | 2020-10-13 |
| Data Publikacji | 2019-02-03 |
| Ocena | 5.00/5 Łącznie 1 Oceny |
| Deweloper | Denis Brazhnikov |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://labelsbase.net |
| Adres URL Strony Polityki Prywatności | https://labelsbase.net/privacy |
| Obsługiwane Języki | 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"
]
} | |