Created
June 16, 2018 01:30
-
-
Save HelloWorld017/ff5d065552ac55bc5e1518cfd4470ae2 to your computer and use it in GitHub Desktop.
트게더에서 글을 새 탭에서 열었을 때 이미지가 로딩되지 않는 오류를 수정합니다.
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 tgd.kr Show Images when Open In New Tab | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description 트게더에서 글을 새 탭에서 열었을 때 이미지가 로딩되지 않는 오류를 수정합니다. | |
// @author Khinenw | |
// @match *://*.tgd.kr/* | |
// @grant none | |
// @run-at document-end | |
// ==/UserScript== | |
(function() { | |
document.querySelectorAll('img[data-src]').forEach(v => v.setAttribute('src', v.getAttribute('data-src'))); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment