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.”。

扩展截图

screenshot
screenshot
screenshot

下载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                    

扩展基本信息

名称 Salesforce Credentials Salesforce Credentials
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"
    ]
}