Amazonの商品ページからヨドバシへ飛ぶブックマークレット
おもだった購入先をAmazonからヨドバシなどの国内資本系へとシフトする
■Amazonの商品ページからヨドバシへ飛ぶブックマークレット
■Amazonの商品ページからメルカリへ飛ぶブックマークレット
■Amazonの商品ページからマップカメラへ飛ぶブックマークレット
■Amazonの商品ページからヨドバシへ飛ぶブックマークレット
■Amazonの商品ページからメルカリへ飛ぶブックマークレット
■Amazonの商品ページからマップカメラへ飛ぶブックマークレット
+++
date = "2025-03-11T23:20:55+09:00"
lastmod = "2025-03-12T02:01:00+09:00"
slug = "2025-03-11-23-20-55-09-00"
categories = ["●●●"]
tags = ["●●●タグ"]
title = "●●●タイトル"
+++
## 記事一覧〔更新日時を基準にした降順=最新がトップにくる〕
{{ ← この改行を取り去る。
< details-with-posts class="button-1" summary="[全記事|更新順]を見るor閉じる" > ← この改行を取り去る。改行を取り去ってしまうと、実際にショートコードが機能してしまい、コードが見えなくなる。
}}
<details>
<summary class="{{ .Get "class" }}">{{ .Get "summary" }}</summary>
<div>
<small>
<ul>
{{ $pages := .Page.Site.RegularPages.ByLastmod.Reverse }}
{{ if not $pages }}
<li>No pages found.</li>
{{ else }}
{{ range first 8000 $pages }}
{{ .Render "lili" }}
{{ end }}
{{ end }}
</ul>
</small>
</div>
</details>
<!-- オリジナル -->
<li><lastmod>{{ with .Site.Params.lastmodFormat }}{{ $.Lastmod.Format . }}{{ else }}{{ .Lastmod.Format "2006-01-02 15:04" }}{{ end }}</lastmod> - <a href="{{ .Permalink }}">{{ .Title }}</a></li>
# ▼日付時刻フォーマット▼
dateFormat = "2006-01-02 15:04"
lastmodFormat = "2006-01-02 15:04"
# ▼CSSのカスタマイズとJavaScript▼
custom_css = ["css/customize.css","syntax.css"]
custom_js = ["js/sorttable.js","js/jquery-3.5.1.min.js"]
.button-1 {
display: inline-block;
width: auto;
padding: 8px;
margin: 5px;
height: auto;
text-align: center;
text-decoration: none;
line-height: 22px;
outline: none;
}
.button-1::before,
.button-1::after {
position: absolute;
z-index: -1;
display: block;
content: '';
}
.button-1,
.button-1::before,
.button-1::after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all .3s;
transition: all .3s;
border-radius: 4px;
}
.button-1 {
background-color: #C4E502;
color: #333;
}
.button-1:hover {
background-color: #1d56a5;
color: #fff;
}
静的サイトジェネレータHugoにおいて、特定のsectionだけをタイトル名称順にソートしてセクション内の記事名一覧を表示したい場合、section名と同じファイル名でhtmlファイルを作り、\layouts_defaultという名称のディレクトリに配置します。 例えば、section名がawakeningであれば、awakening.htmlを作り、\layouts_defaultという名称のディレクトリに配置します。 awakening.htmlから呼び出されているhtmlファイルがあれば、それも\layouts_defaultという名称のディレクトリに配置します。 section内の記事 section.html
;■<a href="https://www.onlinemictest.com/ja/keyboard-test/" target="_blank" rel="nofollow">キーボードテスト – あなたのキーボードをテストしましょう</a><br>
;●●●[AHK Quick Convertor V2]を使ってコードをコンバートしてある
;■<a href="https://github.com/mmikeww/AHK-v2-script-converter?tab=readme-ov-file" target="_blank" rel="nofollow">GitHub - mmikeww/AHK-v2-script-converter: AHK v1 -> v2 script converter</a><br>
;全角/半角|vkF3 または vkF4
;変換|vk1C
;無変換|vk1D
;カタカナ/ひらがな/ローマ字|vkF2
;windows|#
;Alt|!
;Ctrl|^
;Shift|+
;左のモディファイアキーを使用(NT系専用)|<
;右のモディファイアキーを使用(NT系専用)|>
;●●●Windowsキー + w キーを同時押ししてWZ Editor 10を起動する
#UseHook ;UseHookをOnにした状態で使用
#w::
{
key := "w"
ErrorLevel := !KeyWait(key, "T0.3")
If(ErrorLevel){ ;長押しした場合
Run("C:\Program Files (x86)\sakura\sakura.exe C:\Users\" A_UserName "\Documents\note-archive.html")
ErrorLevel := !KeyWait(key)
return
}
ErrorLevel := !KeyWait(key, "D, T0.2")
If(!ErrorLevel){ ;2度押しした場合
Run("C:\Program Files (x86)\sakura\sakura.exe C:\Users\" A_UserName "\Documents\bookmarkstoday.html")
ErrorLevel := !KeyWait(key)
return
}else{ ;短押しした場合
Run("C:\Program Files\WZ EDITOR 10\wzeditor.exe")
ErrorLevel := !KeyWait(key)
return
}
}
;●●●Windowsキー + s キーを同時押ししてサクラエディターを起動する
#UseHook ;UseHookをOnにした状態で使用
#s::
{
key := "s"
ErrorLevel := !KeyWait(key, "T0.3")
If(ErrorLevel){ ;長押しした場合
Run("C:\Program Files (x86)\sakura\sakura.exe C:\Users\" A_UserName "\Documents\note-archive.html")
ErrorLevel := !KeyWait(key)
return
}
ErrorLevel := !KeyWait(key, "D, T0.2")
If(!ErrorLevel){ ;2度押しした場合
Run("C:\Program Files (x86)\sakura\sakura.exe C:\Users\" A_UserName "\Documents\bookmarkstoday.html")
ErrorLevel := !KeyWait(key)
return
}else{ ;短押しした場合
Run("C:\Program Files (x86)\sakura\sakura.exe")
ErrorLevel := !KeyWait(key)
return
}
}
^Tab::
{
if (KeyWait("c", "D T0.5") = 0) ; cキーが0.5秒以内に押されないのを待つ
{
; cキーが押された場合
Send "^a" ; すべてを選択
Send "^v" ; クリップボードの内容を貼り付ける
Send "{Enter}" ; [Enter]
}
else
{
; cキーが押されなかった場合
Send "^a" ; すべてを選択
Send "^v" ; クリップボードの内容を貼り付ける
}
}
^+Tab::
{
if (KeyWait("c", "D T0.5") = 0) ; cキーが0.5秒以内に押されないのを待つ
{
; cキーが押された場合
Send "^a" ; すべてを選択
Send "^v" ; クリップボードの内容を貼り付ける
}
else
{
; cキーが押されなかった場合
Send "^a" ; すべてを選択
Send "^v" ; クリップボードの内容を貼り付ける
}
}
;●●●[Shift]+[Tab]で全選択貼り付け
+Tab::
{
Send "^a" ; すべてを選択
Send "^v" ; クリップボードの内容を貼り付ける
}
;●●●[Ctrl]+[無変換]で全選択貼り付け
^vk1D::
{
Send "^a" ; すべてを選択
Send "^v" ; クリップボードの内容を貼り付ける
}
;●●●[Alt]+[無変換vk1D]でハイライト箇所のワードでGoogle検索
!vk1D::
{
Send("^c")
Sleep(450)
ClipboardText := A_Clipboard
if (ClipboardText != "")
{
Run("https://www.google.com/search?q=" ClipboardText)
}
return
}
;●●●[無変換vk1D]+[Space]でハイライト箇所のワードでAmazon検索
vk1D & Space::
{
Send("^c")
Sleep(450)
ClipboardText := A_Clipboard
if (ClipboardText != "")
{
Run("https://www.amazon.co.jp/s?k=" ClipboardText)
}
return
}
vk1D::
{
MouseClick("left", , , , , "down")
KeyWait("vk1D")
MouseClick("left", , , , , "up")
return
}
;●●●[Ctrl]+[Back Space]で[ブラウザ戻る]
^Backspace::
{
Send("{Browser_Back}")
return
}
;●●●[Shift]+[Ctrl]+[Back Space]で[ブラウザ進む]
+^Backspace::
{
Send("{Browser_Forward}")
return
}
;●●●ScrollLock 音声リーダー[音声および動画ファイルの自動文字起こし]の余計な空白などを除去し整える
;●●●http://www7a.biglobe.ne.jp/~khh/ss/ss012.html
;●●●http://ahkwiki.net/RegEx
ScrollLock::
{
A_Clipboard := ""
Send("^a")
Send("^x")
Errorlevel := !ClipWait(1)
if (ErrorLevel != 0)
{
return
}
;RegExReplaceの置換先の改行は[`r`n]
a01 := A_Clipboard
a01 := RegExReplace(a01, "。 +", "。") ;句点の後ろの半角スペースを除去
a01 := RegExReplace(a01, "^ +(.*?)$", "$1") ;行頭の半角スペースを除去
a01 := RegExReplace(a01, "([^ -~\r\n\t])\.", "$1。") ;全角文字の後ろにあるピリオドは句点に置換
a01 := RegExReplace(a01, "([^ -~\r\n\t])\,(| +)", "$1、") ;全角文字の後ろにあるカンマは読点に置換
a01 := RegExReplace(a01, "([!-~])。", "$1.") ;半角文字の後ろにある句点はピリオドに置換
a01 := RegExReplace(a01, "([!-~])、", "$1,") ;半角文字の後ろにある読点はカンマに置換
a01 := RegExReplace(a01, "([^ -~\r\n\t])(\r\n)([0123456789]+)(\r\n)", "$1`r`n") ;行末にある全角文字、改行、行頭の半角数字〔参照元〕の半角数字〔参照元〕を除去。
a01 := RegExReplace(a01, "([^ -~\r\n\t])(\r\n)([0123456789]+)(\r\n)", "$1`r`n") ;行末にある全角文字、改行、行頭の半角数字〔参照元〕の半角数字〔参照元〕を除去。
a01 := RegExReplace(a01, "([^ -~\r\n\t])([0123456789]+)(\r\n)", "$1`r`n") ;行末にある全角文字の後ろの半角数字〔参照元〕を除去。
a01 := RegExReplace(a01, "([^ -~\r\n\t])([0123456789]+)(\r\n)。", "$1。") ;行末にある全角文字の後ろの半角数字〔参照元〕を除去して次行の句点と合体。
a01 := RegExReplace(a01, "(\r\n)+。", "。") ;行頭にある句点は前行に合体
a01 := RegExReplace(a01, "(\r\n)+(\d+|)\.", "。") ;行頭にある〔数字付き〕ピリオドは前行に合体して句点に変換
a01 := RegExReplace(a01, "。", "。`r`n") ;句点の後ろで改行する
a01 := RegExReplace(a01, "([!-~]) +([^ -~\r\n\t])", "$1$2") ;([!-~])=半角
a01 := RegExReplace(a01, "([^ -~\r\n\t]) +([!-~])", "$1$2") ;([^ -~\r\n\t])=全角
a01 := RegExReplace(a01, "([^ -~\r\n\t]) +([^ -~\r\n\t])", "$1$2")
a01 := RegExReplace(a01, "〜", "~")
a01 := RegExReplace(a01, "\(", "(")
a01 := RegExReplace(a01, "\)", ")")
a01 := RegExReplace(a01, "\[", "[")
a01 := RegExReplace(a01, "\]", "]")
a01 := RegExReplace(a01, "( +|)([」)〉》〕】}]’”〟])", "$2")
a01 := RegExReplace(a01, "([」)〉》〕】}]’”〟])( +|)", "$1")
a01 := RegExReplace(a01, "( +|)([「(〈《〔【{[‘“〝])", "$2")
a01 := RegExReplace(a01, "([「(〈《〔【{[‘“〝])( +|)", "$1")
a01 := RegExReplace(a01, "((.*?))", "〔$1〕")
a01 := RegExReplace(a01, "「(.*?)」", "[$1]")
a01 := RegExReplace(a01, "( +|):", ":")
a01 := RegExReplace(a01, ":( +|)", ":")
a01 := RegExReplace(a01, "( +|):", ":")
a01 := RegExReplace(a01, ":( +|)", ":")
a01 := RegExReplace(a01, "\!", "! ")
a01 := RegExReplace(a01, "\?", "? ")
a01 := RegExReplace(a01, "!", "! ")
a01 := RegExReplace(a01, "?", "? ")
a01 := RegExReplace(a01, "! +", "! ")
a01 := RegExReplace(a01, "? +", "? ")
a01 := RegExReplace(a01, "! ", "! `r`n")
a01 := RegExReplace(a01, "? ", "? `r`n")
a01 := RegExReplace(a01, "\. +", ". `r`n")
a01 := RegExReplace(a01, "(\r\n)+", "`r`n")
a01 := RegExReplace(a01, "(\r\n) +", "$1")
a01 := RegExReplace(a01, "? (\r\n)", "、")
a01 := RegExReplace(a01, "名刺", "名詞")
a01 := RegExReplace(a01, "現停止|限定し", "限定詞")
a01 := RegExReplace(a01, "大抵", "たいてい")
a01 := RegExReplace(a01, "([ぁ-ん])伴([わいうえおっ])", "$1ともな$2")
a01 := RegExReplace(a01, "オークの", "多くの")
a01 := RegExReplace(a01, "([ぁ-ん])関([し])", "$1かん$2")
a01 := RegExReplace(a01, "([ぁ-ん])持([たちつてとっ])", "$1も$2")
a01 := RegExReplace(a01, "([ぁ-ん])呼([ばびぶべぼ])", "$1よ$2")
a01 := RegExReplace(a01, "([ぁ-ん])時([一-龠〃々〆〇])", "$1▼じ▲$2") ;【1】待避
a01 := RegExReplace(a01, "([ぁ-ん])時", "$1とき") ;【2】置換
a01 := RegExReplace(a01, "([ぁ-ん])▼じ▲([一-龠〃々〆〇])", "$1時$2") ;【3】待避回収
a01 := RegExReplace(a01, "([ぁ-ん])際([一-龠〃々〆〇])", "$1▼さい▲$2") ;【1】待避
a01 := RegExReplace(a01, "([ぁ-ん])際", "$1さい") ;【2】置換
a01 := RegExReplace(a01, "([ぁ-ん])▼さい▲([一-龠〃々〆〇])", "$1際$2") ;【3】待避回収
a01 := RegExReplace(a01, "文系", "文型") ;特殊な語句間違い
a01 := RegExReplace(a01, "([ぁ-ん])行([かきくけこ])", "$1い$2")
a01 := RegExReplace(a01, "行く末", "【行く末】")
a01 := RegExReplace(a01, "【いく末】", "行く末")
A_Clipboard := a01
Send("^v")
Send("^a")
Send("^c")
Errorlevel := !ClipWait(1)
if (ErrorLevel != 0)
{
return
}
}
;●●●PrintScreen LaTeXでコンパイルする
PrintScreen::
{
Send("{Alt down}{Ctrl down}{,}{Ctrl up}{Alt up}")
return
}
;●●●vk1C 変換キー=クリップボードを毎日がエブリデイファイルに追記する
vk1C::
{
Send("{Ctrl down}{Alt down}{t}{Alt up}{Ctrl up}")
Sleep(1800)
Send("{R}")
Sleep(200)
Send ("{Ctrl down}{PgDn}{Ctrl up}{Home}")
Sleep(200)
Send ("{Enter}")
Sleep(200)
Send ("●●●")
Sleep(200)
Send ("{Enter}")
Sleep(200)
Send ("{Ctrl down}{PgDn}{Ctrl up}{End}")
Sleep(200)
Send ("{Enter}")
Sleep(200)
Send ("{F2}")
}
;●●●Pauseキー=クリップボードを毎日がエブリデイファイルに追記する
Pause::
{
Send("{Ctrl down}{Alt down}{t}{Alt up}{Ctrl up}")
Sleep(1800)
Send("{R}")
Sleep(200)
Send ("{Ctrl down}{PgDn}{Ctrl up}{Home}")
Sleep(200)
Send ("{Enter}")
Sleep(200)
Send ("●●●")
Sleep(200)
Send ("{Enter}")
Sleep(200)
Send ("{Ctrl down}{PgDn}{Ctrl up}{End}")
Sleep(200)
Send ("{Enter}")
Sleep(200)
Send ("{F2}")
}
;●●●vkF2 ひらがな/カタカナキー=ドラッグしてハイライトされた文字列を引用する
vkF2::
{
Send("{Ctrl down}{.}{Ctrl up}")
Sleep(450)
Send("{Q}{Q}")
Sleep(450)
Send("{Ctrl down}{a}{c}{Ctrl up}")
Sleep(800)
Send("{Enter}")
Sleep(800)
Send("{Enter}")
return
}
;●●●AppsKeyの押し方で動作を変える。
;■<a href="https://pouhon.net/ahk-keywait/2848/" target="_blank" rel="nofollow">[AutoHotKey]1つのキーで3つの機能!長押しや2度押しに機能を割り当てる</a><br>
;■<a href="https://ameblo.jp/hinatahugu29/entry-12842214165.html" target="_blank" rel="nofollow">【AutoHotKey】今のキーボードに合わせたカスタマイズに向けて【情報収集】 | ふぐのようす</a><br>
#UseHook ;UseHookをOnにした状態で使用
AppsKey::
{
key := "AppsKey"
ErrorLevel := !KeyWait(key, "T0.3")
If(ErrorLevel){ ;長押しした場合:MIFES
Run('C:\Program Files\MIFES11\MIW.exe')
ErrorLevel := !KeyWait(key)
return
}
ErrorLevel := !KeyWait(key, "D, T0.2")
If(!ErrorLevel){ ;2度押しした場合
Send("{Ctrl down}{.}{Ctrl up}") ; Firefox ShortcutKey2U
Sleep(500) ; 待て
Send("{G}{N}") ; ShortcutKey2URLに登
ErrorLevel := !KeyWait(key)
return
}else{ ;短押しした場合
Send("{Ctrl down}{.}{Ctrl up}") ; Firefox ShortcutKey2U
Sleep(500) ; 待て
Send("{G}{G}") ; ShortcutKey2URLに登
Sleep(500) ; 待て
Send("{Ctrl down}{a}{c}{Ctrl up}{Enter}")
ErrorLevel := !KeyWait(key)
return
}
}
;●●●
^Up::
{
MouseMove(0, -10, 0, "R")
return
}
;●●●
^!Up::
{
MouseMove(0, -50, 0, "R")
return
}
;●●●
^Down::
{
MouseMove(0, 10, 0, "R")
return
}
;●●●
^!Down::
{
MouseMove(0, 50, 0, "R")
return
}
;●●●
^Left::
{
MouseMove(-10, 0, 0, "R")
return
}
;●●●
^!Left::
{
MouseMove(-50, 0, 0, "R")
return
}
;●●●
^Right::
{
MouseMove(10, 0, 0, "R")
return
}
;●●●
^!Right::
{
MouseMove(50, 0, 0, "R")
return
}
■「AutoHotKey」による作業効率化~その1~基本:That’s Done! - ブロマガ
■「AutoHotKey」による作業効率化~その2~実践:That’s Done! - ブロマガ
■AutoHotkeyを利用してマウスとお別れする | NETWIZ.JP
■【プライバシーを守れ】なぜMicrosoftアカウントは嫌われるのか?ローカルアカウントとの違いを徹底解説【利便性と引き換え】
■【Windows 11 22H2】インストール時のMicrosoft アカウント必須を回避!インストール後のローカルアカウント変更方法も徹底解説
■AutoHotkeyのススメ #AutoHotkey - Qiita
■batファイルからPowerShellファイルを呼び出す例
■PowerShellでクリップボードの画像をデスクトップに保存する -STYSK BLOG
■文字列を修正するbatファイル #Windows - Qiita
■クリップボードに値をコピーする - PowerShell Tips | iPentec
■PowerShellを使ってクリップボード操作(データの読み書き)を行う方法
■PowerShell: 文字列中の改行を削除する ReplaceLineEndings
■Set-ClipBoardという取り回しのいいコマンド #PowerShell - Qiita
■ひとり情シスに役立つPowerShellコードのサンプル #Windows10 - Qiita
■サクラエディタのマクロをバッチファイルで複数ファイルに対して実行 – サイゼントの技術ブログ
■Windows標準機能だけで文字列置換できた! #Windows - Qiita
■古参の野良用法
■replaceの文字列置換・正規表現の使い方まとめ #JavaScript - Qiita
about:config
services.sync.scheduler.idleInterval
【1の方法】検索窓に以下を入力
about:profiles
【2の方法】ハンバーガーメニュー→ヘルプ→他のトラブルシューティング情報〔ここにリフレッシュもある〕
C:\Users\pure\AppData\Roaming\Mozilla\Firefox\Profiles
C:\Users\pure\AppData\Roaming\Mozilla\Firefox\Profiles\extensions.json
S_ReplaceAll('[\r\n]+', '\n', 148);
S_ReplaceAll('%E3%83%A8%E3%83%89%E3%83%90%E3%82%B7' , 'ヨドバシ', 44);
S_ReplaceAll('%E9%80%9A%E8%B2%A9%E3%80%90%E5%85%A8%E5%93%81%E7%84%A1%E6%96%99%E9%85%8D%E9%81%94%E3%80%91' , '通販【全品無料配達】', 44);
S_ReplaceAll('%E2%96%A0' , '■', 44);
S_ReplaceAll('%20' , ' ', 44);
S_ReplaceAll('%E5%BC%95%E7%94%A8%E5%85%83' , '引用元', 24);
S_ReplaceAll('%E2%97%8F%E2%97%8F%E2%97%8F' , '●●●', 44);
//完了
//S_ReplaceAll('^(?!■).+$', '', 44);
S_ReplaceAll('^[\r\n]+', '', 44);
S_ReplaceAll('[\n]+', '\r\n', 44);
S_ReDraw(0);
S_SelectAll(0);
S_Copy(0);
javascript:(function() {var url = location.href;var replacedUrl = url.replace(/https:\/\/(.*?)\//gi, 'https://x.com/');location.href = replacedUrl;})();
javascript:(function() {var url = location.href;var replacedUrl = url.replace(/https:\/\/(.*?)\//gi, 'https://nitter.poast.org/');location.href = replacedUrl;})();
javascript:(function() {var url = location.href;var replacedUrl = url.replace(/youchu\.be/gi, 'youtu.be');location.href = replacedUrl;})()
javascript:(function() {var url = location.href;var replacedUrl = url.replace(/youchu\.be/gi, 'youtu.be');var replacedUrl = replacedUrl.replace(/invidious\.poast\.org/gi, 'youtu.be');location.href = replacedUrl;})()
javascript:var gottenurl = location.href;var gottentitle = document.title;gottentitle = gottentitle.normalize("NFC");var newtitle = gottentitle.replace(/ヨドバシ\.com \- (.*) 通販【全品無料配達】/g,"$1");var newtitle = newtitle.replace(/ - YouTube/g,"");var newurl = gottenurl.replace(/http\:\/\/localhost\:1313/g,"");var newurl = newurl.replace(/https:\/\/benkyosukisuki.com/g,"");var newurl = newurl.replace(/search\?.*\&q=/g,"search?&q=");var newurl = newurl.replace(/\&stick=([^&|"]+)/g,"");var newurl = newurl.replace(/\&ved=([^&|"]+)/g,"");var newurl = newurl.replace(/\&biw=([^&|"]+)/g,"");var newurl = newurl.replace(/\&bih=([^&|"]+)/g,"");var newurl = newurl.replace(/\?frm_src=thumb_module/g,"");var newurl = newurl.replace(/\&feature=youtu.be\&t=(\d+)m(\d+)s/g,"");var newurl = newurl.replace(/time_continue=\d+\&/g,"");var newurl = newurl.replace(/\#t=(\d+)m(\d+)s/g,"");var newurl = newurl.replace(/\/\/www.youtube.com\/watch\?v=(.{11})(.*)/g,"//youtu.be/$1?t=00m00s");var newurl = newurl.replace(/\/\/www.amazon.co.jp\/.*\/dp\/(.{10}).*/g,"//www.amazon.co.jp/dp/$1");var newurl = newurl.replace(/\/\/www.amazon.co.jp\/dp\/(.{10}).*/g,"//www.amazon.co.jp/dp/$1");var newurl = newurl.replace(/\/\/vimeo.com\/([\w/:%#\$&\?\(\)~\.=\+\-]+)/g,"//vimeo.com/$1#t=00m00s");var newurl = newurl.replace(/moz\-extension\:(.*?)(.{24})$/g,"https://www.youtube.com/channel/$2");var escapedTitle = newtitle.replace(/"/g, '"');var escapedTitle = escapedTitle.replace(/\//g, '/');prompt('HTML link','■<a href="'+newurl+'" target="_blank" rel="nofollow">'+escapedTitle+'</a><br>')()
javascript:var gottenurl = location.href;var gottentitle = document.title;gottentitle = gottentitle.normalize("NFC");var newtitle = gottentitle.replace(/ヨドバシ\.com \- (.*) 通販【全品無料配達】/g,"$1");var newtitle = newtitle.replace(/ - YouTube/g,"");var newurl = gottenurl.replace(/http\:\/\/localhost\:1313/g,"");var newurl = newurl.replace(/https:\/\/benkyosukisuki.com/g,"");var newurl = newurl.replace(/search\?.*\&q=/g,"search?&q=");var newurl = newurl.replace(/\&stick=([^&|"]+)/g,"");var newurl = newurl.replace(/\&ved=([^&|"]+)/g,"");var newurl = newurl.replace(/\&biw=([^&|"]+)/g,"");var newurl = newurl.replace(/\&bih=([^&|"]+)/g,"");var newurl = newurl.replace(/\?frm_src=thumb_module/g,"");var newurl = newurl.replace(/\&feature=youtu.be\&t=(\d+)m(\d+)s/g,"");var newurl = newurl.replace(/time_continue=\d+\&/g,"");var newurl = newurl.replace(/\#t=(\d+)m(\d+)s/g,"");var newurl = newurl.replace(/\/\/www.youtube.com\/watch\?v=(.{11})(.*)/g,"//youtu.be/$1?t=00m00s");var newurl = newurl.replace(/\/\/www.amazon.co.jp\/.*\/dp\/(.{10}).*/g,"//www.amazon.co.jp/dp/$1");var newurl = newurl.replace(/\/\/www.amazon.co.jp\/dp\/(.{10}).*/g,"//www.amazon.co.jp/dp/$1");var newurl = newurl.replace(/\/\/vimeo.com\/([\w/:%#\$&\?\(\)~\.=\+\-]+)/g,"//vimeo.com/$1#t=00m00s");var newurl = newurl.replace(/moz\-extension\:(.*?)(.{24})$/g,"https://www.youtube.com/channel/$2");var escapedTitle = newtitle.replace(/&/g, '&');var escapedTitle = escapedTitle.replace(/"/g, '"');var escapedTitle = escapedTitle.replace(/'/g, ''');var escapedTitle = escapedTitle.replace(/\//g, '/');var escapedTitle = escapedTitle.replace(/</g, '<');var escapedTitle = escapedTitle.replace(/>/g, '>');prompt('HTML link','■<a href="'+newurl+'" target="_blank" rel="nofollow">'+escapedTitle+'</a><br>')()
javascript:var gottenurl = location.href;var gottentitle = document.title;gottentitle = gottentitle.normalize("NFC");var newtitle = gottentitle.replace(/ヨドバシ\.com \- (.*) 通販【全品無料配達】/g,"$1");var newtitle = newtitle.replace(/ - YouTube/g,"");var newurl = gottenurl.replace(/http\:\/\/localhost\:1313/g,"");var newurl = newurl.replace(/https:\/\/benkyosukisuki.com/g,"");var newurl = newurl.replace(/search\?.*\&q=/g,"search?&q=");var newurl = newurl.replace(/\&stick=([^&|"]+)/g,"");var newurl = newurl.replace(/\&ved=([^&|"]+)/g,"");var newurl = newurl.replace(/\&biw=([^&|"]+)/g,"");var newurl = newurl.replace(/\&bih=([^&|"]+)/g,"");var newurl = newurl.replace(/\?frm_src=thumb_module/g,"");var newurl = newurl.replace(/\&feature=youtu.be\&t=(\d+)m(\d+)s/g,"");var newurl = newurl.replace(/time_continue=\d+\&/g,"");var newurl = newurl.replace(/\#t=(\d+)m(\d+)s/g,"");var newurl = newurl.replace(/\/\/www.youtube.com\/watch\?(.*?)v=(.{11})(.*)/g,"//youtu.be/$2?t=00m00s");var newurl = newurl.replace(/\/\/www.amazon.co.jp\/.*\/dp\/(.{10}).*/g,"//www.amazon.co.jp/dp/$1");var newurl = newurl.replace(/\/\/www.amazon.co.jp\/dp\/(.{10}).*/g,"//www.amazon.co.jp/dp/$1");var newurl = newurl.replace(/\/\/vimeo.com\/([\w/:%#\$&\?\(\)~\.=\+\-]+)/g,"//vimeo.com/$1#t=00m00s");var newurl = newurl.replace(/moz\-extension\:(.*?)(.{24})$/g,"https://www.youtube.com/channel/$2");var escapedTitle = newtitle.replace(/&/g, '&');var escapedTitle = escapedTitle.replace(/"/g, '"');var escapedTitle = escapedTitle.replace(/'/g, ''');var escapedTitle = escapedTitle.replace(/\//g, '/');var escapedTitle = escapedTitle.replace(/</g, '<');var escapedTitle = escapedTitle.replace(/>/g, '>');prompt('HTML link','■<a href="'+newurl+'" target="_blank" rel="nofollow">'+escapedTitle+'</a><br>')()
javascript:(function(){var gottenurl = location.href;var gottentitle = document.title;gottentitle = gottentitle.normalize("NFC");var newtitle = gottentitle.replace(/ヨドバシ\.com \- (.*) 通販【全品無料配達】/g,"$1");var newtitle = newtitle.replace(/ - YouTube/g,"");var newtitle = newtitle.replace(/[\u0000-\u001F]/g, '');var newtitle = newtitle.replace(/\u007F/g, '');var newtitle = newtitle.replace(/\u200B/g, '');var newtitle = newtitle.replace(/\u200C/g, '');var newtitle = newtitle.replace(/\u200D/g, '');var newtitle = newtitle.replace(/\u200E/g, '');var newtitle = newtitle.replace(/\u200F/g, '');var newtitle = newtitle.replace(/\uFE0F/g, '');var newtitle = newtitle.replace(/\uFEFF/g, '');var newtitle = newtitle.replace(/\uD83C[\uDFFB-\uDFFF]/g, '');var newurl = gottenurl.replace(/http\:\/\/localhost\:1313/g,"");var newurl = newurl.replace(/https:\/\/benkyosukisuki.com/g,"");var newurl = newurl.replace(/search\?.*\&q=/g,"search?&q=");var newurl = newurl.replace(/\&stick=([^&|"]+)/g,"");var newurl = newurl.replace(/\&ved=([^&|"]+)/g,"");var newurl = newurl.replace(/\&biw=([^&|"]+)/g,"");var newurl = newurl.replace(/\&bih=([^&|"]+)/g,"");var newurl = newurl.replace(/\?frm_src=thumb_module/g,"");var newurl = newurl.replace(/\&feature=youtu.be\&t=(\d+)m(\d+)s/g,"");var newurl = newurl.replace(/time_continue=\d+\&/g,"");var newurl = newurl.replace(/\#t=(\d+)m(\d+)s/g,"");var newurl = newurl.replace(/\/\/www.youtube.com\/watch\?(.*?)v=(.{11})(.*)/g,"//youtu.be/$2?t=00m00s");var newurl = newurl.replace(/\/\/www.amazon.co.jp\/.*\/dp\/(.{10}).*/g,"//www.amazon.co.jp/dp/$1");var newurl = newurl.replace(/\/\/www.amazon.co.jp\/dp\/(.{10}).*/g,"//www.amazon.co.jp/dp/$1");var newurl = newurl.replace(/\/\/vimeo.com\/([\w/:%#\$&\?\(\)~\.=\+\-]+)/g,"//vimeo.com/$1#t=00m00s");var newurl = newurl.replace(/moz\-extension\:(.*?)(.{24})$/g,"https://www.youtube.com/channel/$2");var escapedTitle = newtitle.replace(/&/g, '&');var escapedTitle = escapedTitle.replace(/"/g, '"');var escapedTitle = escapedTitle.replace(/'/g, ''');var escapedTitle = escapedTitle.replace(/\//g, '/');var escapedTitle = escapedTitle.replace(/</g, '<');var escapedTitle = escapedTitle.replace(/>/g, '>');prompt('HTML link','■<a href="'+newurl+'" target="_blank" rel="nofollow">'+escapedTitle+'</a><br>')})();
javascript:var gottenurl = location.href;var gottentitle = document.title;gottentitle = gottentitle.normalize("NFC");var newtitle = gottentitle.replace(/ヨドバシ\.com \- (.*) 通販【全品無料配達】/g,"$1");var newtitle = newtitle.replace(/ - YouTube/g,"");var newurl = gottenurl.replace(/http\:\/\/localhost\:1313/g,"");var newurl = newurl.replace(/https:\/\/benkyosukisuki.com/g,"");var newurl = newurl.replace(/search\?.*\&q=/g,"search?&q=");var newurl = newurl.replace(/\&stick=([^&|"]+)/g,"");var newurl = newurl.replace(/\&ved=([^&|"]+)/g,"");var newurl = newurl.replace(/\&biw=([^&|"]+)/g,"");var newurl = newurl.replace(/\&bih=([^&|"]+)/g,"");var newurl = newurl.replace(/\?frm_src=thumb_module/g,"");var newurl = newurl.replace(/\&feature=youtu.be\&t=(\d+)m(\d+)s/g,"");var newurl = newurl.replace(/time_continue=\d+\&/g,"");var newurl = newurl.replace(/\#t=(\d+)m(\d+)s/g,"");var newurl = newurl.replace(/\/\/www.youtube.com\/watch\?v=(.{11})(.*)/g,"//youtu.be/$1?t=00m00s");var newurl = newurl.replace(/\/\/www.amazon.co.jp\/.*\/dp\/(.{10}).*/g,"//www.amazon.co.jp/dp/$1");var newurl = newurl.replace(/\/\/www.amazon.co.jp\/dp\/(.{10}).*/g,"//www.amazon.co.jp/dp/$1");var newurl = newurl.replace(/\/\/vimeo.com\/([\w/:%#\$&\?\(\)~\.=\+\-]+)/g,"//vimeo.com/$1#t=00m00s");var newurl = newurl.replace(/moz\-extension\:(.*?)(.{24})$/g,"https://www.youtube.com/channel/$2");var escapedTitle = newtitle.replace(/"/g, '\\"');var escapedTitle = escapedTitle.replace(/\//g, '\\/');prompt('HTML link','■<a href="'+newurl+'" target="_blank" rel="nofollow">'+escapedTitle+'</a><br>')()
javascript:var gottenurl = location.href;var gottentitle = document.title;gottentitle = gottentitle.normalize("NFC");var newtitle = gottentitle.replace(/ヨドバシ\.com \- (.*) 通販【全品無料配達】/g,"$1");var newtitle = newtitle.replace(/ - YouTube/g,"");var newurl = gottenurl.replace(/http\:\/\/localhost\:1313/g,"");var newurl = newurl.replace(/https:\/\/benkyosukisuki.com/g,"");var newurl = newurl.replace(/search\?.*\&q=/g,"search?&q=");var newurl = newurl.replace(/\&stick=([^&|"]+)/g,"");var newurl = newurl.replace(/\&ved=([^&|"]+)/g,"");var newurl = newurl.replace(/\&biw=([^&|"]+)/g,"");var newurl = newurl.replace(/\&bih=([^&|"]+)/g,"");var newurl = newurl.replace(/\?frm_src=thumb_module/g,"");var newurl = newurl.replace(/\&feature=youtu.be\&t=(\d+)m(\d+)s/g,"");var newurl = newurl.replace(/time_continue=\d+\&/g,"");var newurl = newurl.replace(/\#t=(\d+)m(\d+)s/g,"");var newurl = newurl.replace(/\/\/www.youtube.com\/watch\?v=(.{11})(.*)/g,"//youtu.be/$1?t=00m00s");var newurl = newurl.replace(/\/\/www.amazon.co.jp\/.*\/dp\/(.{10}).*/g,"//www.amazon.co.jp/dp/$1");var newurl = newurl.replace(/\/\/www.amazon.co.jp\/dp\/(.{10}).*/g,"//www.amazon.co.jp/dp/$1");var newurl = newurl.replace(/\/\/vimeo.com\/([\w/:%#\$&\?\(\)~\.=\+\-]+)/g,"//vimeo.com/$1#t=00m00s");var newurl = newurl.replace(/moz\-extension\:(.*?)(.{24})$/g,"https://www.youtube.com/channel/$2");prompt('HTML link','■<a href="'+newurl+'" target="_blank" rel="nofollow">'+newtitle+'</a><br>')();
javascript:var page_title=document.getElementsByTagName('title')[0].innerText.replace(/(^\s+)|(\s+$)|\n|\r/g,"").replace(/\s\s/g," ");var escaped_title=page_title.replace(/"/g, """);var selection=document.getSelection() + "";void(prompt('URL','<p><fieldset><dl class="quote"><dd><blockquote cite="' + location.href + '" title="'+ escaped_title +'"><p>' + selection.replace(/\n/g, "<br />") + '</p></blockquote></dd><dt class="cite">引用元: <a href="' + location.href + '" target="_blank" rel="nofollow">'+ escaped_title +'</a></dt></dl></fieldset></p>'))
javascript:var page_title=document.getElementsByTagName('title')[0].innerText.replace(/(^\s+)|(\s+$)|\n|\r/g,"").replace(/\s\s/g," ");var escaped_title=page_title.replace(/"/g,""");var selection=(document.getSelection()+"").replace(/\n/g,"●●●");var content=('<p><fieldset><dl class="quote"><dd><blockquote cite="'+location.href+'" title="'+escaped_title+'"><p>'+selection.replace(/●●●/g,"<br />")+'</p></blockquote></dd><dt class="cite">引用元: <a href="'+location.href+'" target="_blank" rel="nofollow">'+escaped_title+'</a></dt></dl></fieldset></p>').replace(/\s+/g," ").replace(/ +<br \/>/g,"<br />");var textArea=document.createElement("textarea");textArea.value=content;document.body.appendChild(textArea);textArea.select();document.execCommand('copy');document.body.removeChild(textArea);void(prompt('',''))
javascript:(function(){var a=document.getElementsByName("ASIN.0")[0]?document.getElementsByName("ASIN.0")[0].value:document.getElementsByName("ASIN")[0]?document.getElementsByName("ASIN")[0].value:"ASIN\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f";location.href="https://www.amazon.co.jp/dp/"+a})();
javascript:(function(d){ var chk = d.querySelectorAll("input[type='checkbox']"); for (let i = 0; i < chk.length; i++) { chk[i].checked = !chk[i].checked; } })(document);
javascript:(function (){var inputs = document.getElementsByTagName('input');for(var i=0; ; i++){for (var j=0; j < inputs.length; j ++) {var e = inputs[j];if (e.type == 'checkbox')e.checked = false;}if(i < window.frames.length){try {inputs = window.frames[i].document.getElementsByTagName('input');}catch(e){}}else{break;}}})();
javascript:(function (){var inputs = document.getElementsByTagName('input');for(var i=0; ; i++){for (var j=0; j < inputs.length; j ++) {var e = inputs[j];if (e.type == 'checkbox')e.checked = true;}if(i < window.frames.length){try {inputs = window.frames[i].document.getElementsByTagName('input');}catch(e){}}else{break;}}})();
javascript:(function(){javascript:( function() { var title = document.getElementById(%22productTitle%22); var url = %22http://book.tsuhankensaku.com/hon/index.php?t=booksearch&q=%22 + title.innerText; document.location=url; })();})();
javascript:(function(){var a = encodeURIComponent(document.getElementById('productTitle').textContent.trim());location='https://www.yodobashi.com/?word=' + a;})();
javascript:(function(){var a = encodeURIComponent(document.getElementById('productTitle').textContent.trim());location='https://jp.mercari.com/search?keyword=' + a;})();
C:\Users\%USERNAME%\AppData\Roaming\Microsoft\Windows\Recent
([^( -~)(? )(! )。?!])\n
あるいは
([^( -~)(? )(! )。?!])$
(.*?)([。!?])\n
あるいは
(.*?)([。!?])$
■[AutoHotKey]1つのキーで3つの機能!長押しや2度押しに機能を割り当てる
LWin:: ;LWinキーを押した時
KeyWait, LWin, T0.3 ;LWinキーが離されるのを0.3秒待つ
If (ErrorLevel){ ;ErrorLevelが1であれば、
Send,{LWin}
KeyWait, LWin ;LWinが離されるのを待つ
return
}else{ ;そうでなければ、
Send,{Ctrl down}{c}{Ctrl up}
KeyWait, LWin ;LWinが離されるのを待つ
return
}
!!ATOK_TANGO_TEXT_HEADER_1
!!一覧出力
!!対象辞書;C:\Users\%USERNAME%\AppData\Roaming\Justsystem\Atok30\ATOK30U1.DIC
!!単語種類;登録単語(*)
!!読み範囲;(読みの先頭) → (読みの最終)
!!出力日時;23/04/09 08:59
おこなえ 行なえ 一段動詞*
おこな 行な ワ行五段*
り <span id="◆◆@01">◆◆@01</span>;[◆◆@02](#◆◆@02) 単漢字*
り <span id="◆◆@02">◆◆@02</span>;[◆◆@01](#◆◆@01) 単漢字*
ぃ <span id="◆◆@01">◆◆@01</span>;[◆◆@02](#◆◆@02) 単漢字*
ぃ <span id="◆◆@02">◆◆@02</span>;[◆◆@01](#◆◆@01) 単漢字*
り <span id="◆◆@01">◆◆@01</span>;[◆◆@02](#◆◆@02);[◆◆@03](#◆◆@03) 単漢字*
り <span id="◆◆@02">◆◆@02</span>;[◆◆@01](#◆◆@01);[◆◆@03](#◆◆@03) 単漢字*
り <span id="◆◆@03">◆◆@03</span>;[◆◆@01](#◆◆@01);[◆◆@02](#◆◆@02) 単漢字*
ぃ <span id="◆◆@01">◆◆@01</span>;[◆◆@02](#◆◆@02);[◆◆@03](#◆◆@03) 単漢字*
ぃ <span id="◆◆@02">◆◆@02</span>;[◆◆@01](#◆◆@01);[◆◆@03](#◆◆@03) 単漢字*
ぃ <span id="◆◆@03">◆◆@03</span>;[◆◆@01](#◆◆@01);[◆◆@02](#◆◆@02) 単漢字*
り <span id="◆◆@01">◆◆@01</span>;[◆◆@02](#◆◆@02);[◆◆@03](#◆◆@03);[◆◆@04](#◆◆@04) 単漢字*
り <span id="◆◆@02">◆◆@02</span>;[◆◆@01](#◆◆@01);[◆◆@03](#◆◆@03);[◆◆@04](#◆◆@04) 単漢字*
り <span id="◆◆@03">◆◆@03</span>;[◆◆@01](#◆◆@01);[◆◆@02](#◆◆@02);[◆◆@04](#◆◆@04) 単漢字*
り <span id="◆◆@04">◆◆@04</span>;[◆◆@01](#◆◆@01);[◆◆@02](#◆◆@02);[◆◆@03](#◆◆@03) 単漢字*
ぃ <span id="◆◆@01">◆◆@01</span>;[◆◆@02](#◆◆@02);[◆◆@03](#◆◆@03);[◆◆@04](#◆◆@04) 単漢字*
ぃ <span id="◆◆@02">◆◆@02</span>;[◆◆@01](#◆◆@01);[◆◆@03](#◆◆@03);[◆◆@04](#◆◆@04) 単漢字*
ぃ <span id="◆◆@03">◆◆@03</span>;[◆◆@01](#◆◆@01);[◆◆@02](#◆◆@02);[◆◆@04](#◆◆@04) 単漢字*
ぃ <span id="◆◆@04">◆◆@04</span>;[◆◆@01](#◆◆@01);[◆◆@02](#◆◆@02);[◆◆@03](#◆◆@03) 単漢字*
り <span id="◆◆@01">◆◆@01</span>;[◆◆@02](#◆◆@02);[◆◆@03](#◆◆@03);[◆◆@04](#◆◆@04);[◆◆@05](#◆◆@05) 単漢字*
り <span id="◆◆@02">◆◆@02</span>;[◆◆@01](#◆◆@01);[◆◆@03](#◆◆@03);[◆◆@04](#◆◆@04);[◆◆@05](#◆◆@05) 単漢字*
り <span id="◆◆@03">◆◆@03</span>;[◆◆@01](#◆◆@01);[◆◆@02](#◆◆@02);[◆◆@04](#◆◆@04);[◆◆@05](#◆◆@05) 単漢字*
り <span id="◆◆@04">◆◆@04</span>;[◆◆@01](#◆◆@01);[◆◆@02](#◆◆@02);[◆◆@03](#◆◆@03);[◆◆@05](#◆◆@05) 単漢字*
り <span id="◆◆@05">◆◆@05</span>;[◆◆@01](#◆◆@01);[◆◆@02](#◆◆@02);[◆◆@03](#◆◆@03);[◆◆@04](#◆◆@04) 単漢字*
ぃ <span id="◆◆@01">◆◆@01</span>;[◆◆@02](#◆◆@02);[◆◆@03](#◆◆@03);[◆◆@04](#◆◆@04);[◆◆@05](#◆◆@05) 単漢字*
ぃ <span id="◆◆@02">◆◆@02</span>;[◆◆@01](#◆◆@01);[◆◆@03](#◆◆@03);[◆◆@04](#◆◆@04);[◆◆@05](#◆◆@05) 単漢字*
ぃ <span id="◆◆@03">◆◆@03</span>;[◆◆@01](#◆◆@01);[◆◆@02](#◆◆@02);[◆◆@04](#◆◆@04);[◆◆@05](#◆◆@05) 単漢字*
ぃ <span id="◆◆@04">◆◆@04</span>;[◆◆@01](#◆◆@01);[◆◆@02](#◆◆@02);[◆◆@03](#◆◆@03);[◆◆@05](#◆◆@05) 単漢字*
ぃ <span id="◆◆@05">◆◆@05</span>;[◆◆@01](#◆◆@01);[◆◆@02](#◆◆@02);[◆◆@03](#◆◆@03);[◆◆@04](#◆◆@04) 単漢字*
${toc}
[[toc]]
[toc]
[[_toc_]]
■Fit Win - ウィンドウを移動・サイズ変更するフリーソフト
■Fit Win の評価・使い方 - フリーソフト100
■これは便利!! ウィンドウを自由にレイアウト配置可能なフリーソフト 『Fit Win』 | PCあれこれ探索
[スタックメニュー]の起動は、デフォルトでは[Ctrl][Ctrl]と2回押すけれども、起動は、デフォルトでは[Ctrl][Ctrl]と2回押すけれども、[ATOKイミクル]も[Ctrl][Ctrl]と2回押すので、バッティングするので、設定変更が必要。 Windowsのタスクバーの天気・気温のそばにある[>]のアイコンを左クリックすると、隠されていた[システムトレイ〔隠れているインジケーター〕]が出てきます。 [システムトレイ]の中にペースター〔Paster〕のアイコン〔書類が縦書き・横書きと2枚ある〕があるので、このアイコンを左クリックして、 [設定]→[ホットキー]の中の[メイン画面の呼び出し]で[Altキーを二回で呼び出し]を選んで[設定変更]→[OK]を押すと、設定が完了します。 [スタックメニュー1]の[スタックメニュー]中の[ショートカットキー]〔起動するためのトリガー〕から1つを選び、[OK]を押すと、設定が完了します。 私は[変換]にしてみました。
エクスプローラーのpathの窓に貼り付ける。
C:\Users\%USERNAME%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
AutoHotkey.ahk〔ファイル本体〕
JoyToKey
MIFES常駐設定
PhraseExpress.exe
QuickAction
tourokutangocopy.bat〔ファイル本体〕
Voicemeeter Banana
※ 本ソフトの v2.0.2 のインストーラーおよび Zip ファイルは、VirusTotal で好ましくない結果が出ているため、安全面を考慮するのであれば「v1.1.36.02」の利用を推奨します。
[グループ ポリシーの編集]→
[操作(A)]で左クリック→
[プロパティ(R)]の[無効]の中の[コンピューターの構成の設定を無効にする(C)]のチェックボックスを[ON]にして[適用]または[OK]をクリックする
■Extension List Dumper - Google 検索
Firefoxで拡張機能の一覧表を出力するための拡張機能〔Extension List Dumper〕は、Firefoxのアップデートで使えなくなった。
■「Textify」コピーできないボタンやラベルのテキストをコピーするためのツール - 窓の杜
したがって、[Textify]をPCにインストールして、自分が指定した[キー+マウスボタン]の操作で、Firefoxの拡張機能管理画面から、拡張機能のテキストを1件ずつ拾っていくしかない、と私は現在のところ認識している。
■Adblock Plus - free ad blocker - Chrome ウェブストア
■Check My Links - Chrome ウェブストア
■Clear Browsing Data - Chrome ウェブストア
■Disable JavaScript - Chrome ウェブストア
■Duplicate Tabs Closer - Chrome ウェブストア
■Foxish live RSS - Chrome ウェブストア
バックアップしたフォルダーを数世代前まで保存しながら、古いフォルダーから順に消していくためのバッチファイル。
D:
cd D:\
dir /w
move /Y \"Hugo-bakkkk" \"Hugo-bakkkkk"
move /Y \"Hugo-bakkk" \"Hugo-bakkkk"
move /Y \"Hugo-bakk" \"Hugo-bakkk"
move /Y \"Hugo-bak" \"Hugo-bakk"
move /Y \"Hugo" \"Hugo-bak"
move /Y \"copy-Hugo-bakkkk" \"copy-Hugo-bakkkkk"
move /Y \"copy-Hugo-bakkk" \"copy-Hugo-bakkkk"
move /Y \"copy-Hugo-bakk" \"copy-Hugo-bakkk"
move /Y \"copy-Hugo-bak" \"copy-Hugo-bakk"
move /Y \"copy-Hugo" \"copy-Hugo-bak"
set path="Hugo-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="copy-Hugo-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
E:
cd E:\
dir /w
move /Y \"Hugo-bakkkk" \"Hugo-bakkkkk"
move /Y \"Hugo-bakkk" \"Hugo-bakkkk"
move /Y \"Hugo-bakk" \"Hugo-bakkk"
move /Y \"Hugo-bak" \"Hugo-bakk"
move /Y \"Hugo" \"Hugo-bak"
move /Y \"copy-Hugo-bakkkk" \"copy-Hugo-bakkkkk"
move /Y \"copy-Hugo-bakkk" \"copy-Hugo-bakkkk"
move /Y \"copy-Hugo-bakk" \"copy-Hugo-bakkk"
move /Y \"copy-Hugo-bak" \"copy-Hugo-bakk"
move /Y \"copy-Hugo" \"copy-Hugo-bak"
set path="Hugo-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="copy-Hugo-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
F:
cd F:\
dir /w
move /Y \"Hugo-bakkkk" \"Hugo-bakkkkk"
move /Y \"Hugo-bakkk" \"Hugo-bakkkk"
move /Y \"Hugo-bakk" \"Hugo-bakkk"
move /Y \"Hugo-bak" \"Hugo-bakk"
move /Y \"Hugo" \"Hugo-bak"
move /Y \"copy-Hugo-bakkkk" \"copy-Hugo-bakkkkk"
move /Y \"copy-Hugo-bakkk" \"copy-Hugo-bakkkk"
move /Y \"copy-Hugo-bakk" \"copy-Hugo-bakkk"
move /Y \"copy-Hugo-bak" \"copy-Hugo-bakk"
move /Y \"copy-Hugo" \"copy-Hugo-bak"
set path="Hugo-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="copy-Hugo-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
G:
cd G:\
dir /w
move /Y \"Hugo-bakkkk" \"Hugo-bakkkkk"
move /Y \"Hugo-bakkk" \"Hugo-bakkkk"
move /Y \"Hugo-bakk" \"Hugo-bakkk"
move /Y \"Hugo-bak" \"Hugo-bakk"
move /Y \"Hugo" \"Hugo-bak"
move /Y \"copy-Hugo-bakkkk" \"copy-Hugo-bakkkkk"
move /Y \"copy-Hugo-bakkk" \"copy-Hugo-bakkkk"
move /Y \"copy-Hugo-bakk" \"copy-Hugo-bakkk"
move /Y \"copy-Hugo-bak" \"copy-Hugo-bakk"
move /Y \"copy-Hugo" \"copy-Hugo-bak"
set path="Hugo-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="copy-Hugo-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
H:
cd H:\
dir /w
move /Y \"Hugo-bakkkk" \"Hugo-bakkkkk"
move /Y \"Hugo-bakkk" \"Hugo-bakkkk"
move /Y \"Hugo-bakk" \"Hugo-bakkk"
move /Y \"Hugo-bak" \"Hugo-bakk"
move /Y \"Hugo" \"Hugo-bak"
move /Y \"copy-Hugo-bakkkk" \"copy-Hugo-bakkkkk"
move /Y \"copy-Hugo-bakkk" \"copy-Hugo-bakkkk"
move /Y \"copy-Hugo-bakk" \"copy-Hugo-bakkk"
move /Y \"copy-Hugo-bak" \"copy-Hugo-bakk"
move /Y \"copy-Hugo" \"copy-Hugo-bak"
set path="Hugo-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="copy-Hugo-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
D:
cd D:\Users\ai
dir /w
move /Y .\"AppData-bakkkk" .\"AppData-bakkkkk"
move /Y .\"AppData-bakkk" .\"AppData-bakkkk"
move /Y .\"AppData-bakk" .\"AppData-bakkk"
move /Y .\"AppData-bak" .\"AppData-bakk"
move /Y .\"AppData" .\"AppData-bak"
move /Y .\"Desktop-bakkkk" .\"Desktop-bakkkkk"
move /Y .\"Desktop-bakkk" .\"Desktop-bakkkk"
move /Y .\"Desktop-bakk" .\"Desktop-bakkk"
move /Y .\"Desktop-bak" .\"Desktop-bakk"
move /Y .\"Desktop" .\"Desktop-bak"
move /Y .\"Documents-bakkkk" .\"Documents-bakkkkk"
move /Y .\"Documents-bakkk" .\"Documents-bakkkk"
move /Y .\"Documents-bakk" .\"Documents-bakkk"
move /Y .\"Documents-bak" .\"Documents-bakk"
move /Y .\"Documents" .\"Documents-bak"
move /Y .\"Downloads-bakkkk" .\"Downloads-bakkkkk"
move /Y .\"Downloads-bakkk" .\"Downloads-bakkkk"
move /Y .\"Downloads-bakk" .\"Downloads-bakkk"
move /Y .\"Downloads-bak" .\"Downloads-bakk"
move /Y .\"Downloads" .\"Downloads-bak"
move /Y .\"Dropbox-bakkkk" .\"Dropbox-bakkkkk"
move /Y .\"Dropbox-bakkk" .\"Dropbox-bakkkk"
move /Y .\"Dropbox-bakk" .\"Dropbox-bakkk"
move /Y .\"Dropbox-bak" .\"Dropbox-bakk"
move /Y .\"Dropbox" .\"Dropbox-bak"
move /Y .\"Music-bakkkk" .\"Music-bakkkkk"
move /Y .\"Music-bakkk" .\"Music-bakkkk"
move /Y .\"Music-bakk" .\"Music-bakkk"
move /Y .\"Music-bak" .\"Music-bakk"
move /Y .\"Music" .\"Music-bak"
move /Y .\"Pictures-bakkkk" .\"Pictures-bakkkkk"
move /Y .\"Pictures-bakkk" .\"Pictures-bakkkk"
move /Y .\"Pictures-bakk" .\"Pictures-bakkk"
move /Y .\"Pictures-bak" .\"Pictures-bakk"
move /Y .\"Pictures" .\"Pictures-bak"
move /Y .\"Videos-bakkkk" .\"Videos-bakkkkk"
move /Y .\"Videos-bakkk" .\"Videos-bakkkk"
move /Y .\"Videos-bakk" .\"Videos-bakkk"
move /Y .\"Videos-bak" .\"Videos-bakk"
move /Y .\"Videos" .\"Videos-bak"
set path="AppData-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Desktop-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Documents-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Downloads-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Dropbox-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Music-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Pictures-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Videos-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
E:
cd E:\Users\ai
dir /w
move /Y .\"AppData-bakkkk" .\"AppData-bakkkkk"
move /Y .\"AppData-bakkk" .\"AppData-bakkkk"
move /Y .\"AppData-bakk" .\"AppData-bakkk"
move /Y .\"AppData-bak" .\"AppData-bakk"
move /Y .\"AppData" .\"AppData-bak"
move /Y .\"Desktop-bakkkk" .\"Desktop-bakkkkk"
move /Y .\"Desktop-bakkk" .\"Desktop-bakkkk"
move /Y .\"Desktop-bakk" .\"Desktop-bakkk"
move /Y .\"Desktop-bak" .\"Desktop-bakk"
move /Y .\"Desktop" .\"Desktop-bak"
move /Y .\"Documents-bakkkk" .\"Documents-bakkkkk"
move /Y .\"Documents-bakkk" .\"Documents-bakkkk"
move /Y .\"Documents-bakk" .\"Documents-bakkk"
move /Y .\"Documents-bak" .\"Documents-bakk"
move /Y .\"Documents" .\"Documents-bak"
move /Y .\"Downloads-bakkkk" .\"Downloads-bakkkkk"
move /Y .\"Downloads-bakkk" .\"Downloads-bakkkk"
move /Y .\"Downloads-bakk" .\"Downloads-bakkk"
move /Y .\"Downloads-bak" .\"Downloads-bakk"
move /Y .\"Downloads" .\"Downloads-bak"
move /Y .\"Dropbox-bakkkk" .\"Dropbox-bakkkkk"
move /Y .\"Dropbox-bakkk" .\"Dropbox-bakkkk"
move /Y .\"Dropbox-bakk" .\"Dropbox-bakkk"
move /Y .\"Dropbox-bak" .\"Dropbox-bakk"
move /Y .\"Dropbox" .\"Dropbox-bak"
move /Y .\"Music-bakkkk" .\"Music-bakkkkk"
move /Y .\"Music-bakkk" .\"Music-bakkkk"
move /Y .\"Music-bakk" .\"Music-bakkk"
move /Y .\"Music-bak" .\"Music-bakk"
move /Y .\"Music" .\"Music-bak"
move /Y .\"Pictures-bakkkk" .\"Pictures-bakkkkk"
move /Y .\"Pictures-bakkk" .\"Pictures-bakkkk"
move /Y .\"Pictures-bakk" .\"Pictures-bakkk"
move /Y .\"Pictures-bak" .\"Pictures-bakk"
move /Y .\"Pictures" .\"Pictures-bak"
move /Y .\"Videos-bakkkk" .\"Videos-bakkkkk"
move /Y .\"Videos-bakkk" .\"Videos-bakkkk"
move /Y .\"Videos-bakk" .\"Videos-bakkk"
move /Y .\"Videos-bak" .\"Videos-bakk"
move /Y .\"Videos" .\"Videos-bak"
set path="AppData-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Desktop-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Documents-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Downloads-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Dropbox-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Music-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Pictures-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Videos-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
F:
cd F:\Users\ai
dir /w
move /Y .\"AppData-bakkkk" .\"AppData-bakkkkk"
move /Y .\"AppData-bakkk" .\"AppData-bakkkk"
move /Y .\"AppData-bakk" .\"AppData-bakkk"
move /Y .\"AppData-bak" .\"AppData-bakk"
move /Y .\"AppData" .\"AppData-bak"
move /Y .\"Desktop-bakkkk" .\"Desktop-bakkkkk"
move /Y .\"Desktop-bakkk" .\"Desktop-bakkkk"
move /Y .\"Desktop-bakk" .\"Desktop-bakkk"
move /Y .\"Desktop-bak" .\"Desktop-bakk"
move /Y .\"Desktop" .\"Desktop-bak"
move /Y .\"Documents-bakkkk" .\"Documents-bakkkkk"
move /Y .\"Documents-bakkk" .\"Documents-bakkkk"
move /Y .\"Documents-bakk" .\"Documents-bakkk"
move /Y .\"Documents-bak" .\"Documents-bakk"
move /Y .\"Documents" .\"Documents-bak"
move /Y .\"Downloads-bakkkk" .\"Downloads-bakkkkk"
move /Y .\"Downloads-bakkk" .\"Downloads-bakkkk"
move /Y .\"Downloads-bakk" .\"Downloads-bakkk"
move /Y .\"Downloads-bak" .\"Downloads-bakk"
move /Y .\"Downloads" .\"Downloads-bak"
move /Y .\"Dropbox-bakkkk" .\"Dropbox-bakkkkk"
move /Y .\"Dropbox-bakkk" .\"Dropbox-bakkkk"
move /Y .\"Dropbox-bakk" .\"Dropbox-bakkk"
move /Y .\"Dropbox-bak" .\"Dropbox-bakk"
move /Y .\"Dropbox" .\"Dropbox-bak"
move /Y .\"Music-bakkkk" .\"Music-bakkkkk"
move /Y .\"Music-bakkk" .\"Music-bakkkk"
move /Y .\"Music-bakk" .\"Music-bakkk"
move /Y .\"Music-bak" .\"Music-bakk"
move /Y .\"Music" .\"Music-bak"
move /Y .\"Pictures-bakkkk" .\"Pictures-bakkkkk"
move /Y .\"Pictures-bakkk" .\"Pictures-bakkkk"
move /Y .\"Pictures-bakk" .\"Pictures-bakkk"
move /Y .\"Pictures-bak" .\"Pictures-bakk"
move /Y .\"Pictures" .\"Pictures-bak"
move /Y .\"Videos-bakkkk" .\"Videos-bakkkkk"
move /Y .\"Videos-bakkk" .\"Videos-bakkkk"
move /Y .\"Videos-bakk" .\"Videos-bakkk"
move /Y .\"Videos-bak" .\"Videos-bakk"
move /Y .\"Videos" .\"Videos-bak"
set path="AppData-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Desktop-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Documents-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Downloads-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Dropbox-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Music-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Pictures-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Videos-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
G:
cd G:\Users\ai
dir /w
move /Y .\"AppData-bakkkk" .\"AppData-bakkkkk"
move /Y .\"AppData-bakkk" .\"AppData-bakkkk"
move /Y .\"AppData-bakk" .\"AppData-bakkk"
move /Y .\"AppData-bak" .\"AppData-bakk"
move /Y .\"AppData" .\"AppData-bak"
move /Y .\"Desktop-bakkkk" .\"Desktop-bakkkkk"
move /Y .\"Desktop-bakkk" .\"Desktop-bakkkk"
move /Y .\"Desktop-bakk" .\"Desktop-bakkk"
move /Y .\"Desktop-bak" .\"Desktop-bakk"
move /Y .\"Desktop" .\"Desktop-bak"
move /Y .\"Documents-bakkkk" .\"Documents-bakkkkk"
move /Y .\"Documents-bakkk" .\"Documents-bakkkk"
move /Y .\"Documents-bakk" .\"Documents-bakkk"
move /Y .\"Documents-bak" .\"Documents-bakk"
move /Y .\"Documents" .\"Documents-bak"
move /Y .\"Downloads-bakkkk" .\"Downloads-bakkkkk"
move /Y .\"Downloads-bakkk" .\"Downloads-bakkkk"
move /Y .\"Downloads-bakk" .\"Downloads-bakkk"
move /Y .\"Downloads-bak" .\"Downloads-bakk"
move /Y .\"Downloads" .\"Downloads-bak"
move /Y .\"Dropbox-bakkkk" .\"Dropbox-bakkkkk"
move /Y .\"Dropbox-bakkk" .\"Dropbox-bakkkk"
move /Y .\"Dropbox-bakk" .\"Dropbox-bakkk"
move /Y .\"Dropbox-bak" .\"Dropbox-bakk"
move /Y .\"Dropbox" .\"Dropbox-bak"
move /Y .\"Music-bakkkk" .\"Music-bakkkkk"
move /Y .\"Music-bakkk" .\"Music-bakkkk"
move /Y .\"Music-bakk" .\"Music-bakkk"
move /Y .\"Music-bak" .\"Music-bakk"
move /Y .\"Music" .\"Music-bak"
move /Y .\"Pictures-bakkkk" .\"Pictures-bakkkkk"
move /Y .\"Pictures-bakkk" .\"Pictures-bakkkk"
move /Y .\"Pictures-bakk" .\"Pictures-bakkk"
move /Y .\"Pictures-bak" .\"Pictures-bakk"
move /Y .\"Pictures" .\"Pictures-bak"
move /Y .\"Videos-bakkkk" .\"Videos-bakkkkk"
move /Y .\"Videos-bakkk" .\"Videos-bakkkk"
move /Y .\"Videos-bakk" .\"Videos-bakkk"
move /Y .\"Videos-bak" .\"Videos-bakk"
move /Y .\"Videos" .\"Videos-bak"
set path="AppData-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Desktop-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Documents-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Downloads-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Dropbox-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Music-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Pictures-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Videos-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
H:
cd H:\Users\ai
dir /w
move /Y .\"AppData-bakkkk" .\"AppData-bakkkkk"
move /Y .\"AppData-bakkk" .\"AppData-bakkkk"
move /Y .\"AppData-bakk" .\"AppData-bakkk"
move /Y .\"AppData-bak" .\"AppData-bakk"
move /Y .\"AppData" .\"AppData-bak"
move /Y .\"Desktop-bakkkk" .\"Desktop-bakkkkk"
move /Y .\"Desktop-bakkk" .\"Desktop-bakkkk"
move /Y .\"Desktop-bakk" .\"Desktop-bakkk"
move /Y .\"Desktop-bak" .\"Desktop-bakk"
move /Y .\"Desktop" .\"Desktop-bak"
move /Y .\"Documents-bakkkk" .\"Documents-bakkkkk"
move /Y .\"Documents-bakkk" .\"Documents-bakkkk"
move /Y .\"Documents-bakk" .\"Documents-bakkk"
move /Y .\"Documents-bak" .\"Documents-bakk"
move /Y .\"Documents" .\"Documents-bak"
move /Y .\"Downloads-bakkkk" .\"Downloads-bakkkkk"
move /Y .\"Downloads-bakkk" .\"Downloads-bakkkk"
move /Y .\"Downloads-bakk" .\"Downloads-bakkk"
move /Y .\"Downloads-bak" .\"Downloads-bakk"
move /Y .\"Downloads" .\"Downloads-bak"
move /Y .\"Dropbox-bakkkk" .\"Dropbox-bakkkkk"
move /Y .\"Dropbox-bakkk" .\"Dropbox-bakkkk"
move /Y .\"Dropbox-bakk" .\"Dropbox-bakkk"
move /Y .\"Dropbox-bak" .\"Dropbox-bakk"
move /Y .\"Dropbox" .\"Dropbox-bak"
move /Y .\"Music-bakkkk" .\"Music-bakkkkk"
move /Y .\"Music-bakkk" .\"Music-bakkkk"
move /Y .\"Music-bakk" .\"Music-bakkk"
move /Y .\"Music-bak" .\"Music-bakk"
move /Y .\"Music" .\"Music-bak"
move /Y .\"Pictures-bakkkk" .\"Pictures-bakkkkk"
move /Y .\"Pictures-bakkk" .\"Pictures-bakkkk"
move /Y .\"Pictures-bakk" .\"Pictures-bakkk"
move /Y .\"Pictures-bak" .\"Pictures-bakk"
move /Y .\"Pictures" .\"Pictures-bak"
move /Y .\"Videos-bakkkk" .\"Videos-bakkkkk"
move /Y .\"Videos-bakkk" .\"Videos-bakkkk"
move /Y .\"Videos-bakk" .\"Videos-bakkk"
move /Y .\"Videos-bak" .\"Videos-bakk"
move /Y .\"Videos" .\"Videos-bak"
set path="AppData-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Desktop-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Documents-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Downloads-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Dropbox-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Music-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Pictures-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
set path="Videos-bakkkkk"
del /f/s/q %path% > nul
rmdir /s/q %path%
[Windowsでフォルダーをバックアップするときの世代管理]の前提として、[BunBackup]を使ったバックアップ行為があります。 [BunBackup]はコピースピードが遅いので、根本的な改善が必要かもしれません。 しかし、現在のところ、[BunBackup]を使っています。
[Windowsボタン]→[歯車アイコン|設定]→[個人用設定]→[左ペインの【タスクバー】]「タスクバーの端にある[デスクトップの表示]ボタンにマウスカーソルを置いたときに、プレビューを使用してデスクトップをプレビューする」を[オン]にする。
[Windowsボタン]→[設定]→[システム]→左ペインにある[詳細情報]に、以下のような内容が書いてあります。
[バージョン|22H2]という部分が、Windows 10のバージョンです。
エディション|Windows 10 Pro
バージョン|22H2
インストール日|2022/10/24
OS ビルド|19045.2193
エクスペリエンス|Windows Feature Experience Pack 120.2212.4180.0
[Windows 10 2022 更新 l バージョン 22H2]の[今すぐアップデート]を押すと、Microsoftが用意したソフトウェアがダウンロードされ、自動的に実行されます。
■Flexible Renamerの詳細情報 : Vector ソフトを探す!
使い慣れた[正規表現エンジン]、使い慣れた[テキストエディタ]で、[ファイル名/フォルダ名]を一括編集できるので、きわめて効率がよい。
■Windowsスマートチューニング(409) Win 10編: [Win]キーを使ったショートカットキーを無効にする | マイナビニュース
コンピューター\HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced
■VB/VC++ランタイム XTRM Runtime.10がWindows XPへのインストールに対応しました
■「XTRM Runtime」VB/VCの各種ランタイムを一括導入 - 窓の杜
■XTRM Runtimeの詳細情報 : Vector ソフトを探す!
[スタートボタン]は[コントロールパネル]が奥に隠れてしまっている。 [コントロールパネル]は常用モジュールであるから、Windows 10オリジナルのままよりも[Open Shell / Open Shell Menu]を使ったほうが便利である。
[Open Shell / Open Shell Menu]は設定画面の下部にある[Backup]を開けば、XMLファイルとして設定をエクスポートできる。 他のPCにも設定をコピーするとき、Dropboxを経由させると効率的。
ベクターにメルマガ登録をしておくと、【メルマガ会員限定の安売り情報】がメールで送られてきます。 ベクターなら、セキュリティソフト〔アンチウイルスソフト〕として[カスペルスキー][マカフィー]の両方を取り扱っており、ともに[【3年5台】が5000円を下回るセール]をときどき行ないます。 このセールのタイミングで、予算とご自身の購買方針に合わせて、1ライセンス、あるいは、2~3ライセンスをまとめ買いしておく感じでいいかもしれません。
■ベクターPCショップ : 「ESET」の検索結果
■ベクターPCショップ : 「カスペルスキー」の検索結果
■PCショップ : メールマガジン登録ページ
[Vectorのメールマガジンに登録して会員になる]と、セールの時期を待ちさえすれば、[カスペルスキー〔Kaspersky〕インターネット セキュリティ]が[3年5台分4980円]で入手できます。 私が知る中で[カスペルスキー〔Kaspersky〕][3年5台分4980円]が最も安価です。
■WPD:プライバシー設定を簡単にカスタマイズできる | お手軽ふりーなもの探検記
すべて[OFF]にしたうえで、動かないソフトを動かすためには、[Windows Push Notifications User Service|ON]が必要らしい。
今のところ[OFF]で問題ない。
[BunBackup]の起動には[Windows Push Notifications User Service|ON]が必要。
ファイル名を指定して実行
regedit
コンピューター\HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer
MultipleInvokePromptMinimum
256
100
おっちょこちょいな人は、10進数で300未満ぐらいにしておいたほうがよい。私は10進数で256にしておいた。
■PCショップ : メールマガジン登録ページ
■【最安値3,980円】カスペルスキー セキュリティは、一体どこで更新するのが安いのか?(3年5台版) | フリーランス女子の投資&節税日記
メールマガジンのリンクを踏まないと、特別価格のページにたどり着かない。
フリーウェアでは「[ZIPファイル]を解凍すると[フォルダー]になる」ということが多い。 必要ではなくなったフリーウェアの整理では、[ZIPファイル][フォルダー]を両方とも確実に削除したい。 ところが、Windowsに標準で付いているエクスプローラーでは、[フォルダー]と[ファイル]とをまとめて名前順に並べ替えることができない。
いろいろなソフトウェアをインストールしているうちに、右クリックのメニューが勝手に増えている。
■Windows10「すべてのプログラム」はどこ?スタートメニュー復活で見やすくなった機能まとめ | Beyond(ビヨンド)
[Windowsボタンのそばにある虫眼鏡アイコン]→
[【コントロールパネル】と入力]→
[コントロールパネル]→
[検索窓で【管理ツール】と入力して【管理ツール】をクリック]→
[【歯車アイコン】サービス]→
[【SysMain】を探して左クリック→
プロパティが立ち上がる→
スタートアップの種類(E)で【無効】を選択→
[OK]→
[開いたWindowを【×バツ】で消す]
[Magnifying glass icon near the Windows button] →
[Enter [Control Panel]] →
[Control Panel] →
[Enter [Administrative Tools] in the search window and click [Administrative Tools]] →
[[Gear icon] Services] →
[Search for [SysMain] and left-click it →
Properties will be launched →
Select [Disabled] in Startup type (E) →
[OK]→
[Close the opened window with [X]]
■【Windows10】SysMain(旧SuperFetch)とはどんな機能?無効にしたら影響はあるの?
いかせんもあんすぁ
■Windows10 superfetchを無効に設定する方法
パソコンの問題を改善
■Windows10のショートカットキーが重い件(Superfetch) - WGGの活動log
■「Windows 10」でアプリが勝手にインストールされないようにする方法 - 価格.comマガジン
■Windows10 Proに自動インストールされるストアアプリと戦った記録 | アーザスBlog
■Windowsスマートチューニング(373) Win 10編: 新規作成やコピー、ショートカット時の名前テンプレートを作成する | マイナビニュース
レジストリを編集するとWindowsが立ち上がらなくなったり、不具合を起こしたりすることがあります。 あくまでも自己責任で。
[CF-B10]にはWindows 7の32bitと64bitの権利しかないので、Windows 8.1への逃げ道はない。
Windows 7にかんしてサポートが切れたので、[CF-B10]はWindows 7に留まる、もしくは、Windows 10に移行するしかない。