Unofficial Genius Search

Unofficial Genius Search

Was ist Unofficial Genius Search?

Unofficial Genius Search ist eine Chrome-Erweiterung, die von Steven Galarza entwickelt wurde, und ihr Hauptmerkmal ist "Unofficial Genius Search".

Unofficial Genius Search-Erweiterungs-CRX-Datei herunterladen

Laden Sie Unofficial Genius Search-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Unofficial Genius Search Unofficial Genius Search
ID ignebclglbamlknbifbdkodjgoegknpe
Offizielle URL https://chrome.google.com/webstore/detail/unofficial-genius-search/ignebclglbamlknbifbdkodjgoegknpe
Beschreibung Unofficial Genius Search
Dateigröße 24.26 KB
Installationsanzahl 36
Aktuelle Version 1.0
Letztes Update 2014-08-02
Veröffentlichungsdatum 2014-08-02
Bewertung 3.00/5 Insgesamt 7 Bewertungen
Entwickler Steven Galarza
Zahlungsart free
Unterstützte Sprachen 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
}