Convert Path

Convert Path

WindowsとMac間のパス変換をサポートします。環境が混在する状況でのパスの受け渡しを円滑にして作業を効率化します。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Convert Path",
  "description": "WindowsとMac間のパス変換をサポートします。環境が混在する状況でのパスの受け渡しを円滑にして作業を効率化します。",
  "version": "1.2",
  "icons": {
    "128": "images/icon/icon_128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "contextMenus",
    "clipboardWrite",
    "clipboardRead",
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.chatwork.com/*",
        "https://*.cybozu.com/*",
        "https://cybozulive.com/*",
        "https://*.backlog.jp/*"
      ],
      "js": [
        "js/contents.js"
      ]
    }
  ],
  "commands": {
    "convert-mac-to-win": {
      "description": "convert-mac-to-win",
      "global": true,
      "suggested_key": {
        "default": "Ctrl+Shift+M"
      }
    },
    "convert-win-to-mac": {
      "description": "convert-win-to-mac",
      "global": true,
      "suggested_key": {
        "default": "Ctrl+Shift+W"
      }
    },
    "convert-mac-to-mac": {
      "description": "convert-mac-to-mac",
      "global": true,
      "suggested_key": {
        "default": "Ctrl+Shift+F"
      }
    }
  }
}