SmartPKI component extension

SmartPKI component extension

This extension are used with SmartPKI component(required extra installation). Copyright 2012 Zhan Xin Information Co., Ltd.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "version": "0.0.1.3",
  "manifest_version": 2,
  "description": "__MSG_extDescription__",
  "default_locale": "zh_TW",
  "icons": {
    "128": "icon-128.png"
  },
  "minimum_chrome_version": "32",
  "homepage_url": "http://www.zhaninfo.com",
  "content_scripts": [
    {
      "matches": [
        "*://*/*",
        "file:///*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "bg.js"
    ]
  },
  "page_action": {
    "default_icon": {
      "19": "icon-19.png",
      "38": "icon-38.png"
    },
    "default_title": "__MSG_pageActionTitle__"
  },
  "web_accessible_resources": [
    "pagejs.js",
    "util.js",
    "manifest.json"
  ],
  "permissions": [
    "nativeMessaging"
  ]
}