Provides secure two-factor authentication(2FA). Safeguard your digital life with ease.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"default_locale": "en",
"name": "Authenticator App",
"description": "__MSG_desc_manifest__",
"version": "3.0.1",
"icons": {
"16": "images/logo_16.png",
"19": "images/logo_19.png",
"32": "images/logo_32.png",
"38": "images/logo_38.png",
"48": "images/logo_48.png",
"64": "images/logo_64.png",
"96": "images/logo_96.png",
"128": "images/logo_128.png",
"256": "images/logo_256.png",
"512": "images/logo_512.png",
"1024": "images/logo_1024.png"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/logo_toolbar_16.png",
"32": "images/logo_toolbar_32.png",
"48": "images/logo_toolbar_48.png",
"72": "images/logo_toolbar_72.png",
"128": "images/logo_toolbar_128.png"
}
},
"permissions": [
"activeTab",
"storage"
],
"web_accessible_resources": [
{
"resources": [
"js/*"
],
"matches": [
"<all_urls>"
]
},
{
"resources": [
"images/*"
],
"matches": [
"<all_urls>"
]
},
{
"resources": [
"assets/*"
],
"matches": [
"<all_urls>"
]
}
],
"minimum_chrome_version": "116"
}