GloNavi Anchor for kintone

GloNavi Anchor for kintone

This is a Chrome extension that allows you to add your own shortcut buttons to kintone's global navigation.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "GloNavi Anchor for kintone",
  "version": "1.5.1",
  "homepage_url": "https://github.com/Kyome22/kintone-GloNavi-Anchor",
  "description": "__MSG_description__",
  "default_locale": "en",
  "options_page": "option.html",
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "content_scripts": [
    {
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ],
      "matches": [
        "https://*.cybozu.com/k/*",
        "https://*.cybozu-dev.com/k/*",
        "https://*.kintone.com/k/*",
        "https://*.kintone-dev.com/k/*",
        "https://*.cybozu.cn/k/*",
        "https://*.cybozu-dev.cn/k/*"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  }
}