SQL Viewer
View SQL files/content formatted in the browser
Wat is SQL Viewer?
SQL Viewer is een Chrome-extensie ontwikkeld door Ravikiran Janardhana, en de belangrijkste functie is "View SQL files/content formatted in the browser".
Extensie Screenshots
Download het CRX-bestand van de extensie SQL Viewer
Download SQL Viewer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 Basisinformatie over de Extensie
| Naam | |
| ID | iejlefphljdlldbogebiknjdbgdmlodd |
| Officiële URL | https://chromewebstore.google.com/detail/sql-viewer/iejlefphljdlldbogebiknjdbgdmlodd |
| Beschrijving | View SQL files/content formatted in the browser |
| Bestandsgrootte | 232 KB |
| Aantal Installaties | 7,804 |
| Huidige Versie | 1.0.2 |
| Laatst Bijgewerkt | 2019-03-08 |
| Publicatiedatum | 2019-03-08 |
| Beoordeling | 4.50/5 Totaal 4 Beoordelingen |
| Ontwikkelaar | Ravikiran Janardhana |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
]
}
]
} | |