mirror of
https://github.com/bitwarden/browser
synced 2025-01-29 12:40:06 +01:00
Matt Gibson
6b66f14319
Update web sso content to indicate window OK to close (#720)
* Update web sso content to indicate window OK to close This is done after the authResult handoff message is delivered to the extension. It is not possible to close the window from javascript as closing a window is limited to the script that opened it. If we maintain a reference to the web window, it should be possible to subscribe to the authResult message and close the web windows from the browser. * Use i18n for close tab message * delete cookie after it is used Co-authored-by: Matt Gibson <mdgibson@Matts-MBP.lan>
The Bitwarden web project is an Angular application that powers the web vault (https://vault.bitwarden.com/).
Build/Run
Requirements
- Node.js v8.11 or greater
Run the app
npm install
npm run build:watch
You can now access the web vault in your browser at https://localhost:8080
. You can adjust your API endpoint settings in src/app/services/services.module.ts
by altering the apiService.setUrls
call. For example:
await apiService.setUrls({
base: isDev ? null : window.location.origin,
api: isDev ? 'http://mylocalapi' : null,
identity: isDev ? 'http://mylocalidentity' : null,
});
If you want to point the development web vault to the production APIs, you can set:
await apiService.setUrls({
base: null,
api: 'https://api.bitwarden.com',
identity: 'https://identity.bitwarden.com',
});
Contribute
Code contributions are welcome! Please commit any pull requests against the master
branch.
Security audits and feedback are welcome. Please open an issue or email us privately if the report is sensitive in nature. You can read our security policy in the SECURITY.md
file.
Description
L'estensione per Browser di Bitwarden funziona con Chrome, Firefox, Edge, Opera, Safari, Vivaldi, brave, Tor Browser. L'istanza bitwarden dei devol comprende tutte le funzioni premium di bitwarden
https://vaultwarden.devol.it
Readme
Languages
TypeScript
81.9%
HTML
12.6%
SCSS
2.3%
JavaScript
1.6%
MDX
0.9%
Other
0.6%