Inspect and view changes in MindYourPass – Password Manager source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "__MSG_extName__",
"description": "__MSG_description__",
"version": "5.6.3",
"manifest_version": 3,
"default_locale": "en",
"minimum_chrome_version": "92",
"author": "MindYourPass",
"action": {
"default_icon": {
"20": "assets/MindYourPassIcon_20.png",
"40": "assets/MindYourPassIcon_40.png"
}
},
"content_scripts": [
{
"matches": [
"https://www.mindyourpass.io/app",
"https://www.mindyourpass.io/app/*",
"https://mindyourpass.io/app",
"https://mindyourpass.io/app/*"
],
"js": [
"contentFIDO2AuthenticationPage.js",
"contentFIDO2RegistrationPage.js"
],
"run_at": "document_end",
"all_frames": false
},
{
"matches": [
"http://*/*",
"https://*/*"
],
"exclude_matches": [
"https://login.mindyourpass.io/*",
"https://web.mindyourpass.io/*",
"https://localhost:5001/*"
],
"js": [
"contentEntry.js"
],
"run_at": "document_end",
"all_frames": true
},
{
"matches": [
"http://*/*",
"https://*/*"
],
"exclude_matches": [
"https://login.mindyourpass.io/*",
"https://web.mindyourpass.io/*",
"https://localhost:5001/*"
],
"js": [
"contentWebAuthn.js"
],
"run_at": "document_start",
"all_frames": true
},
{
"matches": [
"https://*/*"
],
"js": [
"contentEntryMainWorld.js"
],
"world": "MAIN",
"run_at": "document_start"
},
{
"matches": [
"https://login.mindyourpass.io/login/Account/SignUpConfirmation"
],
"js": [
"contentSignedUp.js"
],
"run_at": "document_end"
},
{
"matches": [
"https://login.mindyourpass.io/login/account/signup*"
],
"js": [
"contentSigningUp.js"
],
"run_at": "document_end"
}
],
"background": {
"service_worker": "backgroundEntry.js"
},
"icons": {
"16": "icon_16.png",
"48": "icon_48.png",
"128": "icon_128.png"
},
"permissions": [
"activeTab",
"storage",
"webRequest",
"webNavigation",
"favicon",
"privacy",
"bookmarks"
],
"host_permissions": [
"<all_urls>"
],
"incognito": "split",
"web_accessible_resources": [
{
"resources": [
"assets/securelogin2/signin.html",
"assets/securelogin2/notification.html",
"_favicon/*"
],
"matches": [
"<all_urls>"
],
"extension_ids": [
"*"
]
},
{
"resources": [
"/assets/securelogin2/index.html"
],
"matches": [
"https://mindyourpass.io/*",
"https://www.mindyourpass.io/*"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}