Unofficial Genius Search
Unofficial Genius Search
Qu'est-ce que Unofficial Genius Search ?
Unofficial Genius Search est une extension Chrome développée par Steven Galarza, et sa fonction principale est "Unofficial Genius Search".
Télécharger le fichier CRX de l'extension Unofficial Genius Search
Téléchargez les fichiers d'extension Unofficial Genius Search au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | ignebclglbamlknbifbdkodjgoegknpe |
URL Officiel | https://chrome.google.com/webstore/detail/unofficial-genius-search/ignebclglbamlknbifbdkodjgoegknpe |
Description | Unofficial Genius Search |
Taille du Fichier | 24.26 KB |
Nombre d'Installations | 36 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2014-08-02 |
Date de Publication | 2014-08-02 |
Évaluation | 3.00/5 Total 7 Évaluations |
Développeur | Steven Galarza |
Type de Paiement | free |
Langues Prises en Charge | 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 } |