OutSystems Local storage Explorer
Often, while developing mobile application with local storage data it is essential to know what data is those tables. For those who…
OutSystems Local storage Explorerとは何ですか?
OutSystems Local storage Explorerはbruno.m.martinhoによって開発されたChromeの拡張機能で、その主な機能は「Often, while developing mobile application with local storage data it is essential to know what data is those tables. For those who…」です。
拡張機能のスクリーンショット
OutSystems Local storage Explorer拡張機能のCRXファイルをダウンロード
OutSystems Local storage Explorer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Often, while developing mobile application with local storage data it is essential to know what data is those tables. For those who tried, you know that using the WebSQL explorer from Chrome dev tools is very similar to being tortured, so we've tried to find a better way to do it. Since we couldn't find any extension that would fit our requirements, there was only one option in the horizon: create our own Chrome extension to do it.
拡張機能の基本情報
名前 | |
ID | pjogpmgggjkbkloledijjnocphecfegc |
公式URL | https://chrome.google.com/webstore/detail/outsystems-local-storage/pjogpmgggjkbkloledijjnocphecfegc |
説明 | Often, while developing mobile application with local storage data it is essential to know what data is those tables. For those who… |
ファイルサイズ | 32.55 KB |
インストール数 | 321 |
現在のバージョン | 0.1 |
最終更新日 | 2018-01-10 |
公開日 | 2018-01-10 |
評価 | 4.57/5 合計 7 レビュー |
開発者 | bruno.m.martinho |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "OutSystems Local storage Explorer", "version": "0.1", "offline_enabled": true, "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/ajax.googleapis.com https:\/\/cdnjs.cloudflare.com; object-src 'self'", "background": { "persistent": false, "scripts": [ "background.js" ] }, "permissions": [ "downloads", "storage" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_script.js" ], "run_at": "document_idle", "all_frames": false } ], "icons": { "16": "assets\/icon_16.png", "48": "assets\/icon_48.png", "128": "assets\/icon_128.png" }, "page_action": { "default_title": "Test Extension", "default_popup": "index.html" } } |