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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Often, while developing mobile application with local storage data it is essential to know what data is those tables. For those who…"।

एक्सटेंशन स्क्रीनशॉट्स

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में OutSystems Local storage Explorer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम OutSystems Local storage Explorer OutSystems Local storage Explorer
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"
    }
}