Record Reference for Discogs
Creates a discogs information module for songs on youtube that have discogs urls.
Was ist Record Reference for Discogs?
Record Reference for Discogs ist eine Chrome-Erweiterung, die von gc entwickelt wurde, und ihr Hauptmerkmal ist "Creates a discogs information module for songs on youtube that have discogs urls.".
Erweiterungsscreenshots
Record Reference for Discogs-Erweiterungs-CRX-Datei herunterladen
Laden Sie Record Reference for Discogs-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Creates a discogs information module for songs on youtube that have discogs urls. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | njiogcdpikidadiobpdjhjppnibjklfa |
| Offizielle URL | https://chrome.google.com/webstore/detail/record-reference-for-disc/njiogcdpikidadiobpdjhjppnibjklfa |
| Beschreibung | Creates a discogs information module for songs on youtube that have discogs urls. |
| Dateigröße | 155 KB |
| Installationsanzahl | 78 |
| Aktuelle Version | 0.9.2 |
| Letztes Update | 2016-04-12 |
| Veröffentlichungsdatum | 2016-04-12 |
| Entwickler | gc |
| Zahlungsart | free |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Record Reference for Discogs",
"description": "Creates a discogs information module for songs on youtube that have discogs urls.",
"version": "0.9.2",
"icons": {
"16": "icons\/_16.png",
"48": "icons\/_48.png"
},
"background": {
"persistent": true,
"page": "bg.html"
},
"permissions": [
"tabs",
"*:\/\/*.youtube.com\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"\/scripts\/axios.min.js",
"scripts\/content-script.js"
],
"css": [
"styles\/main.css"
],
"run_at": "document_idle"
}
],
"browser_action": {
"default_title": "Record Reference for Discogs"
},
"manifest_version": 2
} | |