Skip to content

Instantly share code, notes, and snippets.

@HelloWorld017
Created June 16, 2018 01:30
Show Gist options
  • Save HelloWorld017/ff5d065552ac55bc5e1518cfd4470ae2 to your computer and use it in GitHub Desktop.
Save HelloWorld017/ff5d065552ac55bc5e1518cfd4470ae2 to your computer and use it in GitHub Desktop.
트게더에서 글을 새 탭에서 열었을 때 이미지가 로딩되지 않는 오류를 수정합니다.
// ==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