syspass

Add sysPass integration

syspassคืออะไร?

syspass เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rothjochen และคุณลักษณะหลักของมันคือ "Add sysPass integration"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย syspass

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
    }
}