1. 크롬 웹스토어에서 확장프로그램 tampermonkey를 설치한다.
2. tampermonkey에서 '새 스크립트를 작성'을 선택 후 다음 코드를 입력한다.
// ==UserScript==
// @name Change Visited Link Style and Highlight Clicked Images
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Change the color and font weight of visited links on all websites and add a border to clicked images
// @author SungGuk Park
// @match *://*/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Create a style element for visited links
var linkStyle = document.createElement('style');
linkStyle.type = 'text/css';
linkStyle.innerHTML = 'a:visited { color: #BF360C !important; font-weight: bold !important; }';
document.head.appendChild(linkStyle);
})();
위 코드를 입력 후 스크립트를 저장하면 모든 사이트에서 방문했던 링크 색이 바뀐 걸 확인할 수 있다.
댓글 쓰기