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…
Wat is OutSystems Local storage Explorer?
OutSystems Local storage Explorer is een Chrome-extensie ontwikkeld door bruno.m.martinho, en de belangrijkste functie is "Often, while developing mobile application with local storage data it is essential to know what data is those tables. For those who…".
Extensie Screenshots
Download het CRX-bestand van de extensie OutSystems Local storage Explorer
Download OutSystems Local storage Explorer-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
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.
Basisinformatie over de Extensie
Naam | |
ID | pjogpmgggjkbkloledijjnocphecfegc |
Officiële URL | https://chrome.google.com/webstore/detail/outsystems-local-storage/pjogpmgggjkbkloledijjnocphecfegc |
Beschrijving | Often, while developing mobile application with local storage data it is essential to know what data is those tables. For those who… |
Bestandsgrootte | 32.55 KB |
Aantal Installaties | 321 |
Huidige Versie | 0.1 |
Laatst Bijgewerkt | 2018-01-10 |
Publicatiedatum | 2018-01-10 |
Beoordeling | 4.57/5 Totaal 7 Beoordelingen |
Ontwikkelaar | bruno.m.martinho |
Betalingswijze | free |
Ondersteunde Talen | 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" } } |