Spectrum
This extension pipes your logs to Spectrum
Spectrum란 무엇입니까?
Spectrum은(는) REVSYS에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension pipes your logs to Spectrum"입니다.
확장 프로그램 스크린샷
Spectrum 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Spectrum is a desktop app that gives developers the power to show or hide exactly the logging information they want to see with just a couple of clicks. This Chrome extension makes it trivial to push your Javascript logs into Spectrum while you are developing locally. You just need to setup a stream inside the Spectrum app, install this extension and your console.log and console.dir output will be visible and filterable in your Spectrum app.
확장 프로그램 기본 정보
이름 | Spectrum |
ID | jopdhoinfcaefobmlekemdaikoaaojln |
공식 URL | https://chromewebstore.google.com/detail/spectrum/jopdhoinfcaefobmlekemdaikoaaojln |
설명 | This extension pipes your logs to Spectrum |
파일 크기 | 57.99 KB |
설치 횟수 | 1,152 |
현재 버전 | 0.5.0 |
최근 업데이트 | 2016-04-16 |
출시 날짜 | 2016-04-16 |
평점 | 3.17/5 총 6 개의 평점 |
개발자 | REVSYS |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://www.devspectrum.com/ |
도움말 페이지 URL | http://www.devspectrum.com/help/ |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Spectrum", "description": "This extension pipes your logs to Spectrum", "version": "0.5.0", "browser_action": { "default_icon": { "18": "icons\/18-gray.png", "19": "icons\/19-gray.png", "32": "icons\/32-gray.png", "36": "icons\/36-gray.png", "38": "icons\/38-gray.png", "64": "icons\/64-gray.png" }, "default_title": "Logging to Spectrum is not enabled" }, "background": { "scripts": [ "bundles\/common.bundle.js", "bundles\/background-script.bundle.js" ] }, "web_accessible_resources": [ "bundles\/spectrum.bundle.js", "bundles\/common.bundle.js" ], "options_ui": { "page": "options.html", "chrome_style": true }, "icons": { "48": "icons\/48.png", "96": "icons\/96.png" }, "permissions": [ "activeTab", "storage" ] } |