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ファイルをダウンロード
Salesforce Credentials拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
| Eメール | [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"
]
} | |