Created
December 12, 2019 12:13
-
-
Save SphinxKnight/e77becf4ddd4ea7352a7b05dc23add80 to your computer and use it in GitHub Desktop.
LastPass Fx WebExtension Manifest
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "LastPass: Free Password Manager", | |
| "short_name": "LastPass: Free Password Manager", | |
| "author": "LastPass", | |
| "version": "4.38.0.4", | |
| "description": "Last Password you will ever need", | |
| "applications": { | |
| "gecko": { | |
| "id": "[email protected]", | |
| "strict_min_version": "52.0" | |
| } | |
| }, | |
| "icons": { | |
| "16": "icon2.png", | |
| "32": "icon2_2x.png", | |
| "48": "images/icon48.png", | |
| "128": "images/icon128.png" | |
| }, | |
| "default_locale": "en_US", | |
| "omnibox": { | |
| "keyword": "lp" | |
| }, | |
| "permissions": [ | |
| "tabs", | |
| "idle", | |
| "notifications", | |
| "contextMenus", | |
| "storage", | |
| "nativeMessaging", | |
| "privacy", | |
| "webRequest", | |
| "webNavigation", | |
| "webRequestBlocking", | |
| "http://*/*", | |
| "https://*/*" | |
| ], | |
| "optional_permissions": [ | |
| "cookies", | |
| "history" | |
| ], | |
| "background": { | |
| "page": "background.html" | |
| }, | |
| "content_security_policy": "default-src 'self'; frame-src 'self' https://*.duosecurity.com https://lastpass.com/ https://lastpass.eu; connect-src 'self' https://lastpass.com/ https://accounts.lastpass.com wss://*.lastpass.com wss://*.lastpass.eu https://*.lastpass.com https://lastpass.com https://lastpass.eu https://login.microsoftonline.com https://graph.microsoft.com https://*.oktapreview.com https://*.okta.com; img-src 'self' data: https://lastpass.com/ ; style-src 'self' 'unsafe-inline' https://lastpass.com/ ;", | |
| "content_scripts": [ | |
| { | |
| "matches": [ | |
| "http://*/*", | |
| "https://*/*", | |
| "file:///*" | |
| ], | |
| "js": [ | |
| "onloadwff.js" | |
| ], | |
| "all_frames": true, | |
| "run_at": "document_start" | |
| }, | |
| { | |
| "matches": [ | |
| "https://lastpass.com/acctsiframe.php*", | |
| "https://lastpass.eu/acctsiframe.php*" | |
| ], | |
| "js": [ | |
| "acctsiframe-content-script.js" | |
| ], | |
| "all_frames": true, | |
| "run_at": "document_start" | |
| }, | |
| { | |
| "matches": [ | |
| "https://lastpass.com/acctsiframe.php*", | |
| "https://lastpass.com/update_phone.php*", | |
| "https://lastpass.com/misc_challenge.php*", | |
| "https://lastpass.com/?securitychallenge=1*", | |
| "https://lastpass.com/delete_account.php*", | |
| "https://lastpass.com/otp.php*", | |
| "https://lastpass.com/enterprise_options.php*", | |
| "https://lastpass.com/?&ac=1*", | |
| "https://lastpass.com/?ac=1*", | |
| "https://lastpass.com/enterprise_users.php*", | |
| "https://lastpass.com/misc_login.php*", | |
| "https://lastpass.eu/acctsiframe.php*", | |
| "https://lastpass.eu/update_phone.php*", | |
| "https://lastpass.eu/misc_challenge.php*", | |
| "https://lastpass.eu/?securitychallenge=1*", | |
| "https://lastpass.eu/delete_account.php*", | |
| "https://lastpass.eu/otp.php*", | |
| "https://lastpass.eu/enterprise_options.php*", | |
| "https://lastpass.eu/?&ac=1*", | |
| "https://lastpass.eu/?ac=1*", | |
| "https://lastpass.eu/enterprise_users.php*", | |
| "https://lastpass.eu/misc_login.php*" | |
| ], | |
| "js": [ | |
| "fedlogin-content-script.js" | |
| ], | |
| "all_frames": true, | |
| "run_at": "document_start" | |
| } | |
| ], | |
| "browser_action": { | |
| "browser_style": false, | |
| "default_icon": { | |
| "16": "icon_gray2.png", | |
| "32": "icon_gray2_2x.png" | |
| }, | |
| "default_title": "LastPass", | |
| "default_popup": "extensionLogin.html" | |
| }, | |
| "options_ui": { | |
| "browser_style": false, | |
| "page": "tabDialog.html?dialog=preferences&cmd=open", | |
| "open_in_tab": true | |
| }, | |
| "manifest_version": 2, | |
| "web_accessible_resources": [ | |
| "overlay.html", | |
| "contentScriptDialog.html", | |
| "backgroundFrame.html", | |
| "contentScriptPopup.html", | |
| "betterContentScriptPopup.html", | |
| "general.css", | |
| "tip_context.html", | |
| "images/icon48.png", | |
| "images/formfill16x16.png", | |
| "images/generate16x16.png", | |
| "images/sites16x16.png", | |
| "images/close16x16.png", | |
| "1minsignup/doNotCloseOverlay.html", | |
| "xhrExtension.js", | |
| "migrationPopup.html", | |
| "content-script/views/basic-auth/basic-auth.html", | |
| "content-script/views/basic-auth/style.css", | |
| "images/basic-auth-image.png", | |
| "images/LP-Logo.png", | |
| "images/lp-dots.png" | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment