Old Genius (Song Page Switcher)
Switch between Genius's redesign and old song page, without it resetting when you click on another page.
O que é Old Genius (Song Page Switcher)?
Old Genius (Song Page Switcher) é uma extensão do Chrome desenvolvida por Matei Marica, e sua principal característica é "Switch between Genius's redesign and old song page, without it resetting when you click on another page.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Old Genius (Song Page Switcher)
Baixe arquivos de extensão Old Genius (Song Page Switcher) no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Old Genius (Song Page Switcher) |
ID | dgdnchkkkknfdahaehnkfifchgnoidjj |
URL Oficial | https://chromewebstore.google.com/detail/old-genius-song-page-swit/dgdnchkkkknfdahaehnkfifchgnoidjj |
Descrição | Switch between Genius's redesign and old song page, without it resetting when you click on another page. |
Tamanho do Arquivo | 15.28 KB |
Contagem de Instalações | 191 |
Versão Atual | 1.0.5 |
Última Atualização | 2023-04-25 |
Data de Publicação | 2023-03-31 |
Classificação | 5.00/5 Total de 10 Avaliações |
Desenvolvedor | Matei Marica |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/mateimarica/old-genius |
URL da Página de Política de Privacidade | https://github.com/mateimarica/old-genius/wiki/Privacy-Policy |
Idiomas Suportados | 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\/*" ] } ] } |