smart-pass

smart-pass

Fill in login forms using an OpenPGP-enabled smart card

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAs+ENH/zOz3oqjvQDSdHrWtCnsWtnB/delOQUTWMK5nhnzyW/pnBd3OlkaI+fA8CinMeN+4GLp5FfeYAVlYAyBEDOdBpjFF1Y6CbYAjhuE8yhBq2GCddz4HqEMAKNwyLvO9Ecy+JWemZZphHlcla4YPwfwGyONFWkFahw3oaXalGApuTj1Nj6AEGBhLslmJaiK8XegSrzc6z+25eq73ddnJtud1ZVtMYp6JsnQ03LdA28zd0itZGeFh7kMVkDHKiY3FPwFUbWkx0rVcVgEsAGJBCjN6eUC42+CFSumPkjHHDVhCXA/H7DNkdtajrr6K4Ts1Q+LtTlEc8eiodCEj4uhwIDAQAB",
  "minimum_chrome_version": "55",
  "name": "smart-pass",
  "version": "0.9.8",
  "description": "Fill in login forms using an OpenPGP-enabled smart card",
  "author": "Fabian Henneke",
  "homepage_url": "https://github.com/FabianHenneke/smart-pass",
  "icons": {
    "24": "node_modules/material-design-icons/communication/1x_web/ic_vpn_key_black_24dp.png",
    "48": "node_modules/material-design-icons/communication/1x_web/ic_vpn_key_black_48dp.png",
    "96": "node_modules/material-design-icons/communication/2x_web/ic_vpn_key_black_48dp.png"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "node_modules/chrome-promise/chrome-promise.js",
      "pinCache.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "24": "node_modules/material-design-icons/communication/1x_web/ic_vpn_key_black_24dp.png"
    },
    "default_popup": "popup.html",
    "default_title": "Login to page"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+P",
        "mac": "Command+Shift+P"
      }
    }
  },
  "permissions": [
    "activeTab",
    "alarms",
    "clipboardWrite",
    "contextMenus",
    "identity",
    "idle",
    "https://www.googleapis.com/drive/v3/files/*",
    "chrome://favicon/*",
    "http://*/*",
    "https://*/*"
  ],
  "oauth2": {
    "client_id": "302815148663-3g6p3g5ke6qt5v3n7pf03viv4h01jsnn.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/drive.readonly"
    ]
  }
}