Unofficial Genius Search
Unofficial Genius Search
O que é Unofficial Genius Search?
Unofficial Genius Search é uma extensão do Chrome desenvolvida por Steven Galarza, e sua principal característica é "Unofficial Genius Search".
Baixar o arquivo CRX da Extensão Unofficial Genius Search
Baixe arquivos de extensão Unofficial Genius Search 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
This is an UNOFFICIAL Genius Search browser extension for Chrome that instantly redirects you to a webpage on the official Genius website that contains annotations for the content you are viewing. The extension is basic and only works for music on Youtube and Soundcloud. Please note that I do not work for Genius or am affiliated with them in any way. I simply created this to make my life easier. I do not collect any data or anything, and if you do not believe me, then check out the code here https://github.com/stevengalarza/UnofficialGeniusSearch
Informações Básicas da Extensão
Nome | |
ID | ignebclglbamlknbifbdkodjgoegknpe |
URL Oficial | https://chrome.google.com/webstore/detail/unofficial-genius-search/ignebclglbamlknbifbdkodjgoegknpe |
Descrição | Unofficial Genius Search |
Tamanho do Arquivo | 24.26 KB |
Contagem de Instalações | 36 |
Versão Atual | 1.0 |
Última Atualização | 2014-08-02 |
Data de Publicação | 2014-08-02 |
Classificação | 3.00/5 Total de 7 Avaliações |
Desenvolvedor | Steven Galarza |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "persistent": false, "scripts": [ "genius.js" ] }, "browser_action": { "default_icon": "logo.png" }, "description": "Unofficial Genius Search", "icons": { "128": "logo.png" }, "name": "Unofficial Genius Search", "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*", "http:\/\/*.youtube.com\/*", "https:\/\/*.soundcloud.com\/*", "http:\/\/*.soundcloud.com\/*" ], "js": [ "content.js" ] } ], "permissions": [ "tabs", "webNavigation", "activeTab", "http:\/\/ajax.googleapis.com\/ajax\/services\/search\/*" ], "version": "1.0", "manifest_version": 2 } |