chrome-pass (ZX2C4)
Chrome plugin for *pass* the standard unix password manager.
什麼是chrome-pass (ZX2C4)?
chrome-pass (ZX2C4)是由Horacio Sanson開發的Chrome擴展程式,該擴展的主要功能是“Chrome plugin for *pass* the standard unix password manager.”。
擴展截圖
下載chrome-pass (ZX2C4)擴展crx文件
下載chrome-pass (ZX2C4)擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Simple extension to integrate pass - the standard Unix password manager - with chrome.
IMPORTANT:
1. This plugin requires the chrome-pass python package installed on your machine.
2. You must also have the unix password manager (pass) installed and your password store located at $HOME/.password-store.
3. Chrome version 107 or later.
To install the chrome-pass python package in Ubuntu:
sudo apt-get install python3 python3-pip
pip3 install chrome-pass=0.5.0 --user 擴展基本資訊
| 名稱 | |
| ID | oblajhnjmknenodebpekmkliopipoolo |
| 官方網址 | https://chromewebstore.google.com/detail/chrome-pass-zx2c4/oblajhnjmknenodebpekmkliopipoolo |
| 簡介 | Chrome plugin for *pass* the standard unix password manager. |
| 檔案大小 | 24.78 KB |
| 安裝次數 | 670 |
| 目前版本 | 0.5.0 |
| 更新時間 | 2024-02-09 |
| 上架時間 | 2018-02-19 |
| 評分 | 3.00/5 共 4 次評分 |
| 開發者 | Horacio Sanson |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/hsanson/chrome-pass |
| 說明頁面URL | https://github.com/hsanson/chrome-pass |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "chrome-pass (ZX2C4)",
"version": "0.5.0",
"description": "Chrome plugin for *pass* the standard unix password manager.",
"minimum_chrome_version": "107.0",
"author": "Horacio Sanson",
"homepage_url": "https:\/\/github.com\/hsanson\/chrome-pass",
"icons": {
"16": "icons\/pass16.png",
"48": "icons\/pass48.png",
"128": "icons\/pass128.png"
},
"action": {
"default_icon": {
"19": "icons\/pass19.png",
"38": "icons\/pass38.png",
"114": "icons\/pass114.png"
},
"default_title": "pass",
"default_popup": "popup.html"
},
"content_scripts": [
{
"js": [
"content.js"
],
"all_frames": true,
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"permissions": [
"tabs",
"nativeMessaging",
"clipboardWrite"
]
} | |