Salesforce Credentials
Manage your Salesforce Credentials and login with one click.
Salesforce Credentials란 무엇입니까?
Salesforce Credentials은(는) Alexandr Kurevlev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Manage your Salesforce Credentials and login with one click."입니다.
확장 프로그램 스크린샷
Salesforce Credentials 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension allows you to manage and store your Salesforce Credentials, login with one click and more...
Key features:
- Manage your credentials: Add/Edit/Delete your credentials within the extension
- Easily Login: Login in Salesforce with one click without the verification code
- Add credentials by logging in: Login in Salesforce as you usually do and click 'Add' to add credential
- Login from Address Bar: Enter 'sf' and space in your address bar and start typing username, name or group to login
- Never lose tab: Set your own color for every credential to work on multiple instances at the same time
- Collaborate with your сolleagues: Import and export credentials to file or clipboard to share with your colleagues
- Always in Sync: Keep your Credentials synced with your Google Account in Chrome 확장 프로그램 기본 정보
| 이름 | |
| ID | mneimgababoaidaajoibedahomnpmbja |
| 공식 URL | https://chromewebstore.google.com/detail/salesforce-credentials/mneimgababoaidaajoibedahomnpmbja |
| 설명 | Manage your Salesforce Credentials and login with one click. |
| 파일 크기 | 584 KB |
| 설치 횟수 | 874 |
| 현재 버전 | 1.4.3 |
| 최근 업데이트 | 2020-05-05 |
| 출시 날짜 | 2020-05-05 |
| 평점 | 4.67/5 총 3 개의 평점 |
| 개발자 | Alexandr Kurevlev |
| 이메일 | [email protected] |
| 결제 유형 | free |
| 지원되는 언어 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Salesforce Credentials",
"description": "Manage your Salesforce Credentials and login with one click.",
"version": "1.4.3",
"browser_action": {
"default_icon": "icons\/logo\/icon48.png",
"default_title": "Salesforce Credentials",
"default_popup": "popup.html"
},
"icons": {
"16": "icons\/logo\/icon16.png",
"48": "icons\/logo\/icon48.png",
"128": "icons\/logo\/icon128.png"
},
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"https:\/\/*.salesforce.com\/*",
"https:\/\/*.force.com\/*",
"https:\/\/*.visualforce.com\/*"
],
"js": [
"js\/utils.js",
"js\/setTabs.js"
]
},
{
"matches": [
"https:\/\/*.salesforce.com\/*",
"https:\/\/*.force.com\/*",
"https:\/\/*.visualforce.com\/*"
],
"js": [
"js\/loginHelper.js"
]
}
],
"web_accessible_resources": [
"addCredentialPopup.html"
],
"omnibox": {
"keyword": "sf"
},
"background": {
"scripts": [
"js\/utils.js",
"js\/background.build.js"
],
"persistent": false
},
"permissions": [
"https:\/\/*.salesforce.com\/*",
"https:\/\/*.force.com\/*",
"https:\/\/*.visualforce.com\/*",
"storage",
"tabs",
"downloads",
"cookies"
]
} | |