AutoMaton (Account Manager)

An extension to make life a little easier logging into Salesforce Account Manager using 2FA (TOTP only - Generator APP).

AutoMaton (Account Manager)คืออะไร?

AutoMaton (Account Manager) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Thomas Theunen และคุณลักษณะหลักของมันคือ "An extension to make life a little easier logging into Salesforce Account Manager using 2FA (TOTP only - Generator APP)."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AutoMaton (Account Manager)

ดาวน์โหลดไฟล์ส่วนขยาย AutoMaton (Account Manager) ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        A Salesforce Commerce Cloud browser extension brought into being to make life a little bit easier when working with the Account Manager.

It works the same way as a Password Manager, requiring an "encryption key" to enable automatic login into Account Manager. It will automatically prefill your username, password, and One Time Password too.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ AutoMaton (Account Manager) AutoMaton (Account Manager)
ID clbadmmkinhmiblhkkiiabbbcpljohob
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/automaton-account-manager/clbadmmkinhmiblhkkiiabbbcpljohob
คำอธิบาย An extension to make life a little easier logging into Salesforce Account Manager using 2FA (TOTP only - Generator APP).
ขนาดไฟล์ 226 KB
จำนวนการติดตั้ง 270
เวอร์ชันปัจจุบัน 1.2.4
อัปเดตครั้งล่าสุด 2021-11-08
วันที่เผยแพร่ 2021-05-21
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Thomas Theunen
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/taurgis/automaton/wiki
URL หน้าช่วยเหลือ https://github.com/taurgis/automaton/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AutoMaton (Account Manager)",
    "description": "An extension to make life a little easier logging into Salesforce Account Manager using 2FA (TOTP only - Generator APP).",
    "version": "1.2.4",
    "icons": {
        "16": "\/icons\/icon-16.png",
        "32": "\/icons\/icon-32.png",
        "48": "\/icons\/icon-48.png",
        "128": "\/icons\/icon-128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon.png",
        "default_title": "AutoMaton",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/account.demandware.com\/dwsso\/*"
            ],
            "js": [
                "fill.js"
            ]
        },
        {
            "matches": [
                "https:\/\/verify.salesforce.com\/v1\/verify\/"
            ],
            "js": [
                "totp.js"
            ]
        },
        {
            "matches": [
                "https:\/\/verify.salesforce.com\/v1\/enroll\/"
            ],
            "js": [
                "enroll.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "https:\/\/account.demandware.com\/dwsso\/*",
        "https:\/\/verify.salesforce.com\/v1\/verify\/"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+A",
                "linux": "Ctrl+Shift+A",
                "windows": "Ctrl+Shift+A",
                "mac": "Command+Shift+A"
            }
        }
    }
}