Unofficial Genius Search
Unofficial Genius Search
Unofficial Genius Search란 무엇입니까?
Unofficial Genius Search은(는) Steven Galarza에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Unofficial Genius Search"입니다.
Unofficial Genius Search 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 } |