SQL Viewer
View SQL files/content formatted in the browser
SQL Viewer क्या है?
SQL Viewer Ravikiran Janardhana द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "View SQL files/content formatted in the browser"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में SQL Viewer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } ] } |