This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
| ; #Warn ; Enable warnings to assist with detecting common errors. | |
| #Include, IME.ahk | |
| #SingleInstance, force | |
| #MaxHotkeysPerInterval, 200 ; 右クリック+ホイール用にちょっと多め | |
| SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
| SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
| ; キーのリマップ | |
| Insert::Return | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | (function(){ | |
| const span = document.querySelector("body > div.mwPlayerContainer.kdark.ua-mouse.ua-win.ua-chrome.size-large.pause-state > div.videoHolder > div.captionsOverlay"); | |
| console.log(span); | |
| const observer = new MutationObserver(records => { | |
| console.log(records[0].target.querySelector("div > span > span").innerText); | |
| }); | |
| observer.observe(span, { | |
| childList: true, | |
| }); | |
| })() | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // ==UserScript== | |
| // @name 艦これフルスクリーン | |
| // @description 艦これをフルスクリーンで開くユーザスクリプト | |
| // @include http://www.dmm.com/netgame/social/-/gadgets/=/app_id=854854/ | |
| // ==/UserScript== | |
| function kc($, _) { | |
| const html = $.documentElement, | |
| gf = $.getElementById('game_frame'), | |
| gs = gf.style, | |
| gw = gf.offsetWidth, | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // 元々のscrapboxから提供されていたブックマークレット | |
| javascript: ( | |
| function () { | |
| var title = window.prompt('Scrap "Scrapbox" to %E8%97%A4%E6%9D%91%E6%98%8C%E5%AE%8F's project.', document.title); | |
| if (!title) | |
| return; | |
| var lines = ['', '[' + window.location.href + ' ' + document.title + ']']; | |
| var quote = window.getSelection().toString(); | |
| if (quote.trim()) | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | var historyUrl = 'https://www.amazon.co.jp/gp/css/order-history?orderFilter=year-$year$&startIndex=$index$'; | |
| function beforeSendHook(xhr){ | |
| xhr.setRequestHeader('X-Requested-With' | |
| , { | |
| toString: function(){ | |
| return ''; | |
| } | |
| } | |
| ); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading; | |
| using System.Threading.Tasks; | |
| /* | |
| 参考: | |
| C#にてマウスとキーボードを操りし者 |