Recordify Title Discover
Reads title and track information from several streaming services, and provides these to the Recordify Windows Desktop application
Wat is Recordify Title Discover?
Recordify Title Discover is een Chrome-extensie ontwikkeld door Abelssoft GmbH, en de belangrijkste functie is "Reads title and track information from several streaming services, and provides these to the Recordify Windows Desktop application".
Extensie Screenshots
Download het CRX-bestand van de extensie Recordify Title Discover
Download Recordify Title Discover-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Allows to read the track information from streaming websites, and feeds that into the Abelssoft Recordify program. Recodify was developed to record music from music streaming services in high quality. The software also offers the option to record as „Stereo Mix“ : With the additional recording function "Stereo Mix", you can also record anything else that is being played on your PC speakers. This extension is a companion extension to the Windows Desktop-Application "Recordify" from Abelssoft.
Basisinformatie over de Extensie
Naam | Recordify Title Discover |
ID | kkgbclpocodjecojibeaaglcgndegljl |
Officiële URL | https://chromewebstore.google.com/detail/recordify-title-discover/kkgbclpocodjecojibeaaglcgndegljl |
Beschrijving | Reads title and track information from several streaming services, and provides these to the Recordify Windows Desktop application |
Bestandsgrootte | 21.12 KB |
Aantal Installaties | 33,335 |
Huidige Versie | 0.6.5 |
Laatst Bijgewerkt | 2023-11-17 |
Publicatiedatum | 2020-05-07 |
Beoordeling | 2.84/5 Totaal 25 Beoordelingen |
Ontwikkelaar | Abelssoft GmbH |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://www.abelssoft.de/de/windows/Multimedia/Recordify |
Help Pagina-URL | http://www.abelssoft.de/kontakt |
URL van de Privacybeleid Pagina | https://www.abelssoft.de/de/datenschutz |
Ondersteunde Talen | de,en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Recordify Title Discover", "description": "__MSG_appDesc__", "default_locale": "en", "version": "0.6.5", "author": "Abelssoft", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_icon": { "16": "icon16.png", "24": "icon24.png", "32": "icon32.png" }, "default_title": "Recordify Title Discover" }, "homepage_url": "https:\/\/www.abelssoft.de\/en\/windows\/Multimedia\/Recordify", "content_scripts": [ { "matches": [ "*:\/\/play.google.com\/music\/*" ], "js": [ "RecordifyCompanion.js", "PlayMusicReader.js", "RecordifyCompanionCaller.js" ] }, { "matches": [ "*:\/\/open.spotify.com\/*" ], "js": [ "RecordifyCompanion.js", "SpotifyMusicReader.js", "RecordifyCompanionCaller.js" ] }, { "matches": [ "*:\/\/music.amazon.com\/*" ], "js": [ "RecordifyCompanion.js", "AmazonMusicReader.js", "RecordifyCompanionCaller.js" ] }, { "matches": [ "*:\/\/music.amazon.de\/*" ], "js": [ "RecordifyCompanion.js", "AmazonMusicReader.js", "RecordifyCompanionCaller.js" ] }, { "matches": [ "*:\/\/music.amazon.fr\/*" ], "js": [ "RecordifyCompanion.js", "AmazonMusicReader.js", "RecordifyCompanionCaller.js" ] }, { "matches": [ "*:\/\/music.amazon.es\/*" ], "js": [ "RecordifyCompanion.js", "AmazonMusicReader.js", "RecordifyCompanionCaller.js" ] }, { "matches": [ "*:\/\/music.amazon.it\/*" ], "js": [ "RecordifyCompanion.js", "AmazonMusicReader.js", "RecordifyCompanionCaller.js" ] }, { "matches": [ "*:\/\/music.amazon.co.jp\/*" ], "js": [ "RecordifyCompanion.js", "AmazonMusicReader.js", "RecordifyCompanionCaller.js" ] }, { "matches": [ "*:\/\/music.amazon.in\/*" ], "js": [ "RecordifyCompanion.js", "AmazonMusicReader.js", "RecordifyCompanionCaller.js" ] }, { "matches": [ "*:\/\/music.amazon.co.uk\/*" ], "js": [ "RecordifyCompanion.js", "AmazonMusicReader.js", "RecordifyCompanionCaller.js" ] }, { "matches": [ "*:\/\/music.amazon.com.au\/*" ], "js": [ "RecordifyCompanion.js", "AmazonMusicReader.js", "RecordifyCompanionCaller.js" ] }, { "matches": [ "*:\/\/music.amazon.ca\/*" ], "js": [ "RecordifyCompanion.js", "AmazonMusicReader.js", "RecordifyCompanionCaller.js" ] }, { "matches": [ "*:\/\/*.deezer.com\/*" ], "js": [ "RecordifyCompanion.js", "DeezerReader.js", "RecordifyCompanionCaller.js" ] }, { "matches": [ "*:\/\/music.apple.com\/*" ], "js": [ "RecordifyCompanion.js", "AppleMusicReader.js", "RecordifyCompanionCaller.js" ] } ], "background": { "service_worker": "PlayMusicReaderBackground.js" }, "permissions": [ "storage", "activeTab" ], "host_permissions": [ "http:\/\/localhost:60024\/", "http:\/\/localhost:60023\/", "*:\/\/open.spotify.com\/*", "*:\/\/play.google.com\/music\/*", "*:\/\/music.amazon.com\/*", "*:\/\/music.amazon.de\/*", "*:\/\/music.amazon.fr\/*", "*:\/\/music.amazon.es\/*", "*:\/\/music.amazon.it\/*", "*:\/\/music.amazon.co.jp\/*", "*:\/\/music.amazon.in\/*", "*:\/\/music.amazon.co.uk\/*", "*:\/\/music.amazon.com.au\/*", "*:\/\/music.amazon.ca\/*", "*:\/\/deezer.com\/*", "*:\/\/music.apple.com\/*" ], "manifest_version": 3 } |