Skip to content

Instantly share code, notes, and snippets.

View GOROman's full-sized avatar
😀
Good

GOROman GOROman

😀
Good
  • XVI Inc.
  • Japan
  • 03:29 (UTC +09:00)
  • X @GOROman
View GitHub Profile
@GOROman
GOROman / userscript.js
Last active March 9, 2023 13:40 — forked from ash-r1/userscript.js
Bing AIの入力フォームでIME変換中のEnterでは送られないようにする
// ==UserScript==
// @name Bing AI Enter Fix
// @namespace http://tampermonkey.net/
// @description This Edge extension addresses the issue where Bing AI sends text even when the Enter key is pressed during Japanese conversion.
// @version 1.0.2
// @license MIT
// @author suzuk1satosh1
// @match https://www.bing.com/search?*
// ==/UserScript==
@GOROman
GOROman / userscript.js
Created March 9, 2023 13:16 — forked from ash-r1/userscript.js
Bing AIの入力フォームでIME変換中のEnterでは送られないようにする
// ==UserScript==
// @name Bing AI Enter Fix
// @namespace http://tampermonkey.net/
// @description This Edge extension addresses the issue where Bing AI sends text even when the Enter key is pressed during Japanese conversion.
// @version 1.0.2
// @license MIT
// @author suzuk1satosh1
// @match https://www.bing.com/search?*
// ==/UserScript==
@GOROman
GOROman / AddGitSubmodule.cmake
Created May 5, 2022 01:48 — forked from scivision/AddGitSubmodule.cmake
CMake: init/update a Git submodule and add_subdirectory()
cmake_minimum_required(VERSION 3.19)
function(add_git_submodule dir)
# add a Git submodule directory to CMake, assuming the
# Git submodule directory is a CMake project.
#
# Usage: in CMakeLists.txt
#
# include(AddGitSubmodule.cmake)
# add_git_submodule(mysubmod_dir)