Salesforce WorkBench v2.0
Adds WorkBench icon to the Tool Bar. Logs you into the Salesforce Workbench in one click. Created by Karthik Premnath
Salesforce WorkBench v2.0란 무엇입니까?
Salesforce WorkBench v2.0은(는) Karthik Premnath에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds WorkBench icon to the Tool Bar. Logs you into the Salesforce Workbench in one click. Created by Karthik Premnath"입니다.
확장 프로그램 스크린샷
Salesforce WorkBench v2.0 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This is a new workbench extension which logs you into the Workbench in one click. Updated, tested and works for Google Chrome and Microsoft Edge. After you install you need to set the workbench base url, if the login url is https://workbench.developer.com/login.php then enter base url as https://workbench.developer.com If you need to access the Options menu in the future, right-click on the toolbar button. Note: This extension is not compatible with workbench.developerforce.com server due to terms of service agreement and login CSRF requirements. Host your workbench server by following this link: https://github.com/forceworkbench/forceworkbench#getting-started and provide the base url.
확장 프로그램 기본 정보
이름 | Salesforce WorkBench v2.0 |
ID | plpkbdfpfehnkbjgjgnpfnmohgcdiagd |
공식 URL | https://chromewebstore.google.com/detail/salesforce-workbench-v20/plpkbdfpfehnkbjgjgnpfnmohgcdiagd |
설명 | Adds WorkBench icon to the Tool Bar. Logs you into the Salesforce Workbench in one click. Created by Karthik Premnath |
파일 크기 | 28.88 KB |
설치 횟수 | 1,407 |
현재 버전 | 2.5 |
최근 업데이트 | 2021-03-05 |
출시 날짜 | 2019-08-21 |
평점 | 4.40/5 총 5 개의 평점 |
개발자 | Karthik Premnath |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/quickstart_using_workbench.htm |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "Karthik Premnath", "name": "Salesforce WorkBench v2.0", "description": "Adds WorkBench icon to the Tool Bar. Logs you into the Salesforce Workbench in one click. Created by Karthik Premnath", "version": "2.5", "background": { "scripts": [ "background.js" ], "persistent": true }, "manifest_version": 2, "icons": { "16": "workbench-3-cube-16x16.png", "48": "workbench-3-cube-48x48.png", "128": "workbench-3-cube-128x128.png" }, "options_page": "options.html", "permissions": [ "activeTab", "cookies", "tabs", "https:\/\/*.salesforce.com\/*", "https:\/\/*.force.com\/*", "http:\/\/*.salesforce.com\/*", "http:\/\/*.force.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*.salesforce.com\/*", "https:\/\/*.force.com\/*", "http:\/\/*.salesforce.com\/*", "http:\/\/*.force.com\/*" ], "js": [ "showPageAction.js" ], "run_at": "document_end", "all_frames": false } ], "page_action": { "default_title": "Login to Workbench from Salesforce", "default_icon": "workbench-3-cube-48x48.png" } } |