Recordify Title Discover
Reads title and track information from several streaming services, and provides these to the Recordify Windows Desktop application
What is Recordify Title Discover?
Recordify Title Discover is a Chrome extension developed by Abelssoft GmbH, and its main feature is "Reads title and track information from several streaming services, and provides these to the Recordify Windows Desktop application".
Extension Screenshots
Download Recordify Title Discover Extension CRX File
Download Recordify Title Discover 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
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.
Extension Basic Information
Name | Recordify Title Discover |
ID | kkgbclpocodjecojibeaaglcgndegljl |
Official URL | https://chromewebstore.google.com/detail/recordify-title-discover/kkgbclpocodjecojibeaaglcgndegljl |
Description | Reads title and track information from several streaming services, and provides these to the Recordify Windows Desktop application |
File Size | 21.12 KB |
Installation Count | 33,335 |
Current Version | 0.6.5 |
Last Updated | 2023-11-17 |
Publish Date | 2020-05-07 |
Rating | 2.84/5 Total 25 Ratings |
Developer | Abelssoft GmbH |
[email protected] | |
Payment Type | free |
Extension Website | https://www.abelssoft.de/de/windows/Multimedia/Recordify |
Help Page URL | http://www.abelssoft.de/kontakt |
Privacy Policy Page URL | https://www.abelssoft.de/de/datenschutz |
Supported Languages | 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 } |