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 là gì?

OutSystems Local storage Explorer là một tiện ích mở rộng Chrome được phát triển bởi bruno.m.martinho, và tính năng chính của nó là "Often, while developing mobile application with local storage data it is essential to know what data is those tables. For those who…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

Tải xuống tệp CRX của tiện ích mở rộng OutSystems Local storage Explorer

Tải xuống các tệp mở rộng OutSystems Local storage Explorer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên OutSystems Local storage Explorer OutSystems Local storage Explorer
ID pjogpmgggjkbkloledijjnocphecfegc
URL Chính Thức https://chrome.google.com/webstore/detail/outsystems-local-storage/pjogpmgggjkbkloledijjnocphecfegc
Mô tả Often, while developing mobile application with local storage data it is essential to know what data is those tables. For those who…
Kích Thước Tệp 32.55 KB
Số Lần Cài Đặt 321
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2018-01-10
Ngày Phát Hành 2018-01-10
Đánh Giá 4.57/5 Tổng số 7 Đánh Giá
Nhà Phát Triển bruno.m.martinho
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}