Aura secures your passwords and helps you browse online more securely and privately.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "Aura",
"author": "Aura",
"version": "3.8.13",
"browser_specific_settings": {
"gecko": {
"strict_min_version": "80.0",
"id": "{7eac736e-bef2-462b-bdac-334f7f91e338}"
}
},
"description": "Aura secures your passwords and helps you browse online more securely and privately.",
"icons": {
"16": "images/store-icon-16.png",
"48": "images/store-icon-48.png",
"96": "images/store-icon-96.png",
"128": "images/store-icon-128.png"
},
"background": {
"scripts": [
"js/background-firefox.js"
]
},
"browser_action": {
"default_icon": {
"16": "images/action-icon/active_16.png",
"32": "images/action-icon/active_32.png",
"64": "images/action-icon/active_64.png"
},
"default_title": "Aura – Password Manager"
},
"permissions": [
"tabs",
"alarms",
"privacy",
"webNavigation",
"webRequest",
"webRequestBlocking",
"storage",
"scripting",
"<all_urls>"
],
"incognito": "spanning",
"web_accessible_resources": [
"images/*.png",
"images/*.svg",
"fonts/*.woff",
"fonts/*.woff2",
"videos/*.mp4",
"_locales/**/*.json",
"css/**/*.css",
"js/*.js",
"js/*.js.map",
"html/*.html"
],
"content_scripts": [
{
"run_at": "document_start",
"all_frames": false,
"matches": [
"<all_urls>"
],
"js": [
"js/main-app-content-firefox.js"
],
"css": [
"css/fonts/style.css"
]
},
{
"run_at": "document_start",
"all_frames": true,
"matches": [
"<all_urls>"
],
"js": [
"js/other-content-firefox.js"
]
},
{
"run_at": "document_start",
"matches": [
"*://*.aura.com/*",
"*://localhost/*"
],
"js": [
"js/specific-webpage-content-firefox.js"
]
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; font-src *; style-src 'self' 'unsafe-inline' https://a.sprig.com/"
}