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文件
下载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. 扩展基本信息
| 名称 | |
| 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"
}
}
}
} | |