syspass

Add sysPass integration

什麼是syspass?

syspass是由rothjochen開發的Chrome擴展程式,該擴展的主要功能是“Add sysPass integration”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載syspass擴展crx文件

下載syspass擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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 syspass
ID iekmmiiflmajnlogcmljnpeinnkicdhg
官方網址 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"
    }
}