Unofficial Genius Search
Unofficial Genius Search
Что такое Unofficial Genius Search?
Unofficial Genius Search - это расширение Chrome, разработанное Steven Galarza, и его основная функция - "Unofficial Genius Search".
Скачать файл CRX расширения Unofficial Genius Search
Скачайте файлы расширений Unofficial Genius Search в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | |
ID | ignebclglbamlknbifbdkodjgoegknpe |
Официальный URL | https://chrome.google.com/webstore/detail/unofficial-genius-search/ignebclglbamlknbifbdkodjgoegknpe |
Описание | Unofficial Genius Search |
Размер файла | 24.26 KB |
Количество установок | 36 |
Текущая Версия | 1.0 |
Последнее Обновление | 2014-08-02 |
Дата публикации | 2014-08-02 |
Рейтинг | 3.00/5 Всего 7 оценок |
Разработчик | Steven Galarza |
Тип оплаты | free |
Поддерживаемые языки | 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 } |