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 Text2Link_auto | |
// @namespace | |
// @version 1.2 | |
// @description Link the URL loaded on to linked ! | |
// @updateURL https://gist.githubusercontent.com/ten9miq/bd91fc3222c9dd4eaa321f1bb499ca37/raw/Text2Link.js | |
// @downloadURL https://gist.githubusercontent.com/ten9miq/bd91fc3222c9dd4eaa321f1bb499ca37/raw/Text2Link.js | |
// @author ten9miq | |
// @match http*://*/* | |
// @grant none |
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 amazon page add keepa | |
// @version 0.1 | |
// @description sakura checker frame to amazon page add. | |
// @updateURL https://gist.github.com/ten9miq/9ed4287f1f10231abaa8633de5adc790/raw/amazon_page_add_keepa.user.js | |
// @downloadURL https://gist.github.com/ten9miq/9ed4287f1f10231abaa8633de5adc790/raw/amazon_page_add_keepa.user.js | |
// @author ten9miq | |
// @include /^https://(www\.|smile\.)amazon\.co\.jp/(.*/)?[d-g]p// | |
// @run-at document-end | |
// @grant none |
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 amazon page add sakura checker | |
// @version 0.6 | |
// @description sakura checker frame to amazon page add. | |
// @updateURL https://gist.github.com/ten9miq/1c54907db1d11343e3e68a603e72cc2b/raw/amazon_page_add_sakura_checker.user.js | |
// @downloadURL https://gist.github.com/ten9miq/1c54907db1d11343e3e68a603e72cc2b/raw/amazon_page_add_sakura_checker.user.js | |
// @author ten9miq | |
// @include /^https://(www\.|smile\.)amazon\.co\.jp/(.*/)?[d-g]p// | |
// @match http*://sakura-checker.jp/* | |
// @run-at document-end |
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 listeners = getEventListeners(document); | |
Object.keys(listeners).forEach(event => { | |
if (["pointerover", "pointerout", "pointerleave", "pointerenter", "mouseleave", "pointermove", "mouseover", "mouseout", "mousemove", "mousedown", "mouseup","scroll","mousewheel"].includes(event) == false) { | |
document.addEventListener(event, e => console.log("俺:" + e.type, e)); | |
console.log("ok", event, listeners[event]); | |
} else { | |
console.log("noooo", event, listeners[event]); | |
} | |
}); |
NewerOlder