OutSystems Local storage Explorer

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…

Merlin
Additional files are visible only to premium users

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"
  }
}