2022年5月
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31        
無料ブログはココログ

« 2015年12月 | トップページ | 2016年2月 »

2016年1月30日 (土)

inprivateで開くプロトコル

inprivate.vbsをデスクトップなどに作る。

createobject("wscript.shell").run "iexplore.exe -private "&mid(wscript.arguments(0),len("inprivate:")+1)

inprivate.reg

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\inprivate]
"URL Protocol"=""

[HKEY_CLASSES_ROOT\inprivate\shell]

[HKEY_CLASSES_ROOT\inprivate\shell\open]

[HKEY_CLASSES_ROOT\inprivate\shell\open\command]
@="wscript.exe \"C:\\Users\\%username%\\Desktop\\inprivate.VBS\" \"%1\""

場所のパス名は適宜変更。

chromeで開くプロトコル

chrome.vbsをデスクトップなどに作る。

createobject("wscript.shell").run "chrome.exe "&mid(wscript.arguments(0),len("chrome:")+1)

chrome.reg

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\chrome]
"URL protocol"=""

[HKEY_CLASSES_ROOT\chrome\shell]

[HKEY_CLASSES_ROOT\chrome\shell\open]

[HKEY_CLASSES_ROOT\chrome\shell\open\command]
@="wscript.exe \"C:\\Users\\%username%\\Desktop\\chrome.vbs\" \"%1\""

場所のパス名は適宜変更。

2016年1月28日 (木)

著作権、署名など定型文を編集ボックスの先頭か末尾に挿入するブックマークレット

© ウィンドウズスクリプトプログラマ - Windows Script Programmer


先頭 これをドラッグしてお気に入りにドロップする。

javascript:with(frames[0].document.body.createTextRange()){collapse();pasteHTML('<SPAN style="color: rgb(255, 0, 255);">&copy; ウィンドウズスクリプトプログラマ - Windows Script Programmer </SPAN><HR>');}

末尾 これをドラッグしてお気に入りにドロップする。

javascript:with(frames[0].document.body.createTextRange()){collapse(false);pasteHTML('<HR><SPAN style="color: rgb(255, 0, 255);">&copy; ウィンドウズスクリプトプログラマ - Windows Script Programmer </SPAN>');}


© ウィンドウズスクリプトプログラマ - Windows Script Programmer

2016年1月 3日 (日)

文字を黒、ボールドにするブックマークレット

black+bold これをドラッグしてお気に入りにドロップする。

javascript:(function(){var x=document.styleSheets[document.styleSheets.length-1];x.insertRule('* { font-weight: bold; color: black ! important; }',x.cssRules.length);})()

« 2015年12月 | トップページ | 2016年2月 »