Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Auto 2FA",
"description": "Login through Duo Mobile in your browser",
"version": "1.6.2",
"icons": {
"16": "icon\/16.png",
"32": "icon\/32.png",
"48": "icon\/48.png",
"96": "icon\/96.png",
"128": "icon\/128.png"
},
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/*.duosecurity.com\/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Auto 2FA",
"default_popup": "popup.html"
},
"options_ui": {
"open_in_tab": true,
"page": "options.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.duosecurity.com\/frame\/*\/auth\/prompt*",
"https:\/\/*.duosecurity.com\/frame\/prompt*"
],
"js": [
"content-scripts\/login.js"
]
},
{
"matches": [
"https:\/\/*.duosecurity.com\/*"
],
"js": [
"content-scripts\/scan.js"
]
}
]
}