Karabiner-elementsでMacのPowerPointの行末移動をctrl+eで出来るようにする

MacPowerPointでCtrl+eと打つと「文字列中央揃え」になるんですよね。
これ間違いすぎてストレスたまりすぎたのでKarabinerで行末移動になるようにしました。

frontmost_application_if でオフィス系ソフトとブラウザを指定していますが、 オフィス系ソフトとChromeは上手くいっていて、Firefox、Edge、Safariがまだ上手くいってません。
うーんなんだろう。

    {
      "description": "Left Control + e to End",
      "manipulators": [
        {
          "type": "basic",
          "from": {
            "key_code": "e",
            "modifiers": {
              "mandatory": [
                "control"
              ]
            }
          },
          "to": [
            {
              "key_code": "end"
            }
          ],
      "conditions": [
            {
              "type": "frontmost_application_if",
              "bundle_identifiers": [
                "^com\\.microsoft\\.Excel$",
                "^com\\.microsoft\\.Powerpoint$",
                "^com\\.microsoft\\.Word$",
                "^org\\.mozilla\\.firefox$",
                "^org\\.google\\.Chrome$",
                "^com\\.microsoft\\.edgemac$",
                "^com\\.apple\\.Safari$"
              ]
            }
      ]
        }
      ]
    }