geniuspot
Use Spotify miniplayer on genius.com instead of Apple Music
Wat is geniuspot?
geniuspot is een Chrome-extensie ontwikkeld door Noah Sandman, en de belangrijkste functie is "Use Spotify miniplayer on genius.com instead of Apple Music".
Extensie Screenshots
Download het CRX-bestand van de extensie geniuspot
Download geniuspot-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
Now works with both the old and new genius.com! Replace the built-in Apple Music integration on the Genius lyrics website with the Spotify miniplayer. Because this does not require an Apple developer account, it is not 100% accurate with matching songs, but it is fairly good. It only runs on song pages which already have an Apple Music player on them.
Basisinformatie over de Extensie
Naam | geniuspot |
ID | mcmfnafkklplolbfdhcgmocpmgmimpcl |
Officiële URL | https://chromewebstore.google.com/detail/geniuspot/mcmfnafkklplolbfdhcgmocpmgmimpcl |
Beschrijving | Use Spotify miniplayer on genius.com instead of Apple Music |
Bestandsgrootte | 84.02 KB |
Aantal Installaties | 41 |
Huidige Versie | 0.0.2 |
Laatst Bijgewerkt | 2022-01-07 |
Publicatiedatum | 2021-01-19 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | Noah Sandman |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/nsandman/geniuspot |
Ondersteunde Talen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "short_name": "__MSG_appShortName__", "description": "__MSG_appDescription__", "version": "0.0.2", "manifest_version": 2, "default_locale": "en", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.genius.com\/*" ], "js": [ "scripts\/genius-inject.js" ], "exclude_matches": [ "https:\/\/*.genius.com\/artists\/*", "https:\/\/*.genius.com\/albums\/*", "https:\/\/*.genius.com\/search", "https:\/\/*.genius.com\/" ] } ], "background": { "scripts": [ "scripts\/background.js" ] }, "browser_action": { "default_icon": { "19": "images\/icon-19.png", "38": "images\/icon-38.png" }, "default_title": "__MSG_browserActionTitle__", "default_popup": "pages\/popup.html" }, "permissions": [ "storage" ] } |