Numberfy (Numbers in Spotify)
Adds numbers to songs in spotify playlists and albums.
O que é Numberfy (Numbers in Spotify)?
Numberfy (Numbers in Spotify) é uma extensão do Chrome desenvolvida por LinusK, e sua principal característica é "Adds numbers to songs in spotify playlists and albums.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Numberfy (Numbers in Spotify)
Baixe arquivos de extensão Numberfy (Numbers in Spotify) 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
DISCLAIMER: This extension is NOT an offical extension from Spotify. This extension adds numbers to the songs in your spotify playlists, songs (collection) and albums. Configurable using the icon in your browser (see 4th screenshot). If the extension stops working, let me know (email below). This extension is Open Source and can be found here: https://github.com/LinusCDE/Numberfy
Informações Básicas da Extensão
Nome | |
ID | mlhcbpdinhgnjoenjaiimhjmckbiegig |
URL Oficial | https://chrome.google.com/webstore/detail/numberfy-numbers-in-spoti/mlhcbpdinhgnjoenjaiimhjmckbiegig |
Descrição | Adds numbers to songs in spotify playlists and albums. |
Tamanho do Arquivo | 62.92 KB |
Contagem de Instalações | 59 |
Versão Atual | 1.46 |
Última Atualização | 2018-09-15 |
Data de Publicação | 2018-09-15 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | LinusK |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Numberfy (Numbers in Spotify)", "version": "1.46", "description": "Adds numbers to songs in spotify playlists and albums.", "manifest_version": 2, "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "64": "icons\/icon_64.png", "128": "icons\/icon_128.png", "512": "icons\/icon_512.png" }, "permissions": [ "activeTab", "storage" ], "background": { "scripts": [ "scripts\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/open.spotify.com\/*" ], "all_frames": false, "js": [ "scripts\/spotify_numerizer.js" ] } ], "page_action": { "default_popup": "extension_popup\/page.html" } } |