Unofficial Genius Search

Unofficial Genius Search

Cos'è Unofficial Genius Search?

Unofficial Genius Search è un'estensione di Chrome sviluppata da Steven Galarza, e la sua funzione principale è "Unofficial Genius Search".

Scarica il file CRX dell'estensione Unofficial Genius Search

Scarica i file di estensione Unofficial Genius Search in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Unofficial Genius Search Unofficial Genius Search
ID ignebclglbamlknbifbdkodjgoegknpe
URL Ufficiale https://chrome.google.com/webstore/detail/unofficial-genius-search/ignebclglbamlknbifbdkodjgoegknpe
Descrizione Unofficial Genius Search
Dimensione del File 24.26 KB
Conteggio Installazioni 36
Versione Corrente 1.0
Ultimo Aggiornamento 2014-08-02
Data di Pubblicazione 2014-08-02
Valutazione 3.00/5 Totale 7 Valutazioni
Sviluppatore Steven Galarza
Tipo di Pagamento free
Lingue Supportate 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
}