Old Genius (Song Page Switcher)
Switch between Genius's redesign and old song page, without it resetting when you click on another page.
Qu'est-ce que Old Genius (Song Page Switcher) ?
Old Genius (Song Page Switcher) est une extension Chrome développée par Matei Marica, et sa fonction principale est "Switch between Genius's redesign and old song page, without it resetting when you click on another page.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Old Genius (Song Page Switcher)
Téléchargez les fichiers d'extension Old Genius (Song Page Switcher) au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Note: You have to be signed in to Genius for this extension to work. Features: - Switching between the old song page and the redesign will persist the state between pages. - Removes the "go to the old/new song page" buttons. This extension collects no data and is 100% open-source. Privacy policy: https://github.com/mateimarica/old-genius/wiki/Privacy-Policy
Informations de Base sur l'Extension
Nom | Old Genius (Song Page Switcher) |
ID | dgdnchkkkknfdahaehnkfifchgnoidjj |
URL Officiel | https://chromewebstore.google.com/detail/old-genius-song-page-swit/dgdnchkkkknfdahaehnkfifchgnoidjj |
Description | Switch between Genius's redesign and old song page, without it resetting when you click on another page. |
Taille du Fichier | 15.28 KB |
Nombre d'Installations | 191 |
Version Actuelle | 1.0.5 |
Dernière Mise à Jour | 2023-04-25 |
Date de Publication | 2023-03-31 |
Évaluation | 5.00/5 Total 10 Évaluations |
Développeur | Matei Marica |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/mateimarica/old-genius |
URL de la Page de Politique de Confidentialité | https://github.com/mateimarica/old-genius/wiki/Privacy-Policy |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "[email protected]", "manifest_version": 3, "name": "Old Genius (Song Page Switcher)", "short_name": "Old Genius", "version": "1.0.5", "description": "Switch between Genius's redesign and old song page, without it resetting when you click on another page.", "minimum_chrome_version": "101", "content_security_policy": { "extension_pages": "default-src 'self'; frame-ancestors 'none';" }, "action": { "default_popup": "popup\/popup.html" }, "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "content_scripts": [ { "js": [ "content\/content.js" ], "css": [ "content\/content.css" ], "matches": [ "https:\/\/genius.com\/*" ] } ], "background": { "service_worker": "background\/background.mjs", "type": "module" }, "permissions": [ "declarativeNetRequest", "storage" ], "host_permissions": [ "https:\/\/genius.com\/*" ], "web_accessible_resources": [ { "resources": [ "modules\/regex.mjs" ], "matches": [ "https:\/\/genius.com\/*" ] } ] } |