SQL Viewer
View SQL files/content formatted in the browser
SQL Viewer란 무엇입니까?
SQL Viewer은(는) Ravikiran Janardhana에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "View SQL files/content formatted in the browser"입니다.
확장 프로그램 스크린샷
SQL Viewer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
SQL Viewer lets you view *.sql files inline within chrome instead of asking you to download the file. Source: https://github.com/ravikiranj/sql-viewer Changeset ========= v1.0.2 ====== * Changed default theme to DARCULA * Modified selection operations to work on individual SQL statements * Fixed wording around minify and prettify. * Modified tip to also include Cmd+S for saving raw sql file v1.0.1 ====== * Added tip about saving raw SQL file v1.0.0 ====== * First working version
확장 프로그램 기본 정보
이름 | SQL Viewer |
ID | iejlefphljdlldbogebiknjdbgdmlodd |
공식 URL | https://chromewebstore.google.com/detail/sql-viewer/iejlefphljdlldbogebiknjdbgdmlodd |
설명 | View SQL files/content formatted in the browser |
파일 크기 | 232 KB |
설치 횟수 | 7,804 |
현재 버전 | 1.0.2 |
최근 업데이트 | 2019-03-08 |
출시 날짜 | 2019-03-08 |
평점 | 4.50/5 총 4 개의 평점 |
개발자 | Ravikiran Janardhana |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SQL Viewer", "short_name": "SQL Viewer", "manifest_version": 2, "version": "1.0.2", "description": "View SQL files\/content formatted in the browser", "icons": { "16": "icons\/sql-viewer-16x16.png", "32": "icons\/sql-viewer-32x32.png", "64": "icons\/sql-viewer-64x64.png", "128": "icons\/sql-viewer-128x128.png" }, "permissions": [ "webRequest", "webRequestBlocking", "storage", "*:\/\/*\/*.sql" ], "background": { "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*.sql" ], "css": [ "css\/bootstrap\/bootstrap.min.css", "css\/bootstrap\/bootstrap-select.min.css", "css\/codemirror\/codemirror.css", "css\/codemirror\/dracula.css", "css\/sql-viewer-core.css" ], "js": [ "js\/jquery-3.2.1.min.js", "js\/bootstrap.min.js", "js\/bootstrap-select.min.js", "js\/sql-formatter\/sql-formatter-1.2.2.min.js", "js\/codemirror\/lib\/codemirror.js", "js\/codemirror\/mode\/sql.js", "js\/codemirror\/addon\/formatting.js", "js\/content.js" ] } ] } |