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)은(는) Thomas Theunen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension to make life a little easier logging into Salesforce Account Manager using 2FA (TOTP only - Generator APP)."입니다.
확장 프로그램 스크린샷
AutoMaton (Account Manager) 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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) |
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" } } } } |