syspass
Add sysPass integration
syspass란 무엇입니까?
syspass은(는) rothjochen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add sysPass integration"입니다.
확장 프로그램 스크린샷
syspass 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Will look for login/password fields and add a drop down on focus if matching accounts are found in sysPass. After click on suggested item password will be retrieved and fills out the form. In sysPass go to `User and Accesses -> Api Authorizations` and add permissions for * "Search for Accounts" * "View password" Both have to have the same password Go to the extensions page and edit sysPass Addon settings. Add URL (https required), API token and API password.
확장 프로그램 기본 정보
이름 | syspass |
ID | iekmmiiflmajnlogcmljnpeinnkicdhg |
공식 URL | https://chromewebstore.google.com/detail/syspass/iekmmiiflmajnlogcmljnpeinnkicdhg |
설명 | Add sysPass integration |
파일 크기 | 70.22 KB |
설치 횟수 | 427 |
현재 버전 | 1.6.8 |
최근 업데이트 | 2020-12-03 |
출시 날짜 | 2020-05-31 |
평점 | 3.80/5 총 5 개의 평점 |
개발자 | rothjochen |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | de,en,it |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Add sysPass integration", "manifest_version": 2, "name": "syspass", "short_name": "sysPass Browser integration", "version": "1.6.8", "default_locale": "en", "homepage_url": "https:\/\/github.com\/ochorocho\/syspass-addon", "icons": { "48": "icons\/icon-dark-48.png", "96": "icons\/icon-dark-96.png" }, "permissions": [ "storage", "*:\/\/*\/*", "activeTab" ], "options_ui": { "page": "options.html" }, "background": { "scripts": [ "polyfill.js", "background.js" ] }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "polyfill.js", "syspass.js" ], "css": [ "syspass.css" ] } ], "browser_action": { "default_icon": "icons\/icon-dark-48.png", "theme_icons": [ { "light": "icons\/icon-light-48.png", "dark": "icons\/icon-dark-48.png", "size": 48 } ], "default_title": "sysPass", "default_popup": "popup.html" } } |