Salesforce Credentials

Manage your Salesforce Credentials and login with one click.

Salesforce Credentialsคืออะไร?

Salesforce Credentials เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Alexandr Kurevlev และคุณลักษณะหลักของมันคือ "Manage your Salesforce Credentials and login with one click."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Salesforce Credentials

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}