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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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.
확장 프로그램 기본 정보
이름 | |
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" } } |