cloudstep アドレス帳 for Google Chrome™

cloudstep アドレス帳 for Google Chrome™

Google と連携するグループウェアサービス、「Cloudstep」シリーズの組織階層型アドレス帳サービスである「Cloudstep Address Book」を、Gmail の画面内でご利用いただける Chrome 拡張機能です。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "cloudstep アドレス帳 for Google Chrome™",
  "description": "Google と連携するグループウェアサービス、「Cloudstep」シリーズの組織階層型アドレス帳サービスである「Cloudstep Address Book」を、Gmail の画面内でご利用いただける Chrome 拡張機能です。",
  "version": "1.2.0",
  "icons": {
    "16": "address_book_16.png",
    "48": "address_book_48.png",
    "128": "address_book_128.png"
  },
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "https://*.google.com/"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "jquery.min.map"
      ],
      "matches": [
        "https://*.google.com/*"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.google.com/*"
      ],
      "css": [
        "cs-adb.css"
      ],
      "js": [
        "js/jquery-1.10.2.min.js",
        "js/common.js",
        "js/cs-adb.js",
        "js/bookmarklet-ext.js",
        "js/google.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "options_page": "options.html"
}