Radio Nula
Listen to www.radionula.com and find songs currently playing on YouTube in one click
Radio Nula란 무엇입니까?
Radio Nula은(는) bojan88에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Listen to www.radionula.com and find songs currently playing on YouTube in one click"입니다.
확장 프로그램 스크린샷
Radio Nula 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
It's an open source project. Fork it on https://github.com/bojan88/Radio-Nula and start contributing.
확장 프로그램 기본 정보
이름 | Radio Nula |
ID | emommchpknoembnjdmggnglepiincnfi |
공식 URL | https://chromewebstore.google.com/detail/radio-nula/emommchpknoembnjdmggnglepiincnfi |
설명 | Listen to www.radionula.com and find songs currently playing on YouTube in one click |
파일 크기 | 240 KB |
설치 횟수 | 51 |
현재 버전 | 0.2.3 |
최근 업데이트 | 2018-12-12 |
출시 날짜 | 2018-12-12 |
평점 | 5.00/5 총 4 개의 평점 |
개발자 | bojan88 |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Radio Nula", "version": "0.2.3", "manifest_version": 2, "description": "Listen to www.radionula.com and find songs currently playing on YouTube in one click", "browser_action": { "default_popup": "index.html", "default_icon": { "19": "images\/nula_ico16.png", "38": "images\/nula_ico38.png" }, "default_title": "Radio Nula" }, "permissions": [ "identity", "*:\/\/www.youtube.com\/*", "webRequest", "webRequestBlocking", "http:\/\/www.radionula.com\/" ], "oauth2": { "client_id": "897029467528-60e73h5g73dee5v4ekr6k1h1qu9js71q.apps.googleusercontent.com", "scopes": [ "https:\/\/www.googleapis.com\/auth\/youtube" ] }, "background": { "scripts": [ "background\/audio.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*.radionula.com\/*" ], "js": [ "background\/injected.js" ] } ], "icons": { "16": "images\/nula_ico16.png", "48": "images\/nula_ico48.png", "128": "images\/nula_ico128.png" }, "content_security_policy": "script-src 'self' https:\/\/apis.google.com https:\/\/www.youtube.com https:\/\/s.ytimg.com https:\/\/ssl.google-analytics.com; object-src 'self'" } |