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 |
官方網址 | 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" } } |