Data Explorer for Force.com
Execute Force.com SOQL queries from your browser
Data Explorer for Force.com란 무엇입니까?
Data Explorer for Force.com은(는) https://www.anupshinde.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Execute Force.com SOQL queries from your browser"입니다.
확장 프로그램 스크린샷
Data Explorer for Force.com 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Data Explorer for Force.com allows Force.com developers to be more productive by allowing you to run complex queries on your Force.com environment. This supports SOQL and SOSL queries. The results are automatically displayed in tabular format for easier navigation. Also supports paging and search within results for easier navigation * This application uses the Force.com REST API and connects to the server directly - no intermediate servers
확장 프로그램 기본 정보
이름 | Data Explorer for Force.com |
ID | gbloanahneobjffpopabbapgdoahdljh |
공식 URL | https://chromewebstore.google.com/detail/data-explorer-for-forceco/gbloanahneobjffpopabbapgdoahdljh |
설명 | Execute Force.com SOQL queries from your browser |
파일 크기 | 282 KB |
설치 횟수 | 374 |
현재 버전 | 1.0.2 |
최근 업데이트 | 2016-03-13 |
출시 날짜 | 2016-03-13 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | https://www.anupshinde.com |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://www.anupshinde.com/chrome-extension-data-explorer-force-dot-com |
도움말 페이지 URL | http://www.anupshinde.com/chrome-extension-data-explorer-force-dot-com |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Data Explorer for Force.com", "description": "Execute Force.com SOQL queries from your browser", "version": "1.0.2", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/login.salesforce.com\/services\/oauth2\/success*data_explorer*" ], "js": [ "\/oauth2\/oauth2_inject.js" ], "run_at": "document_start" } ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com https:\/\/anupshindeweb.appspot.com; object-src 'self'", "permissions": [ "https:\/\/*.salesforce.com\/" ], "web_accessible_resources": [ "oauth2\/oauth2.html" ], "browser_action": { "default_icon": "icon.png" }, "background": { "scripts": [ "launch.js" ] } } |