userContent.cssの作成

訪問済みなのに見た目が変わらないサイトがあったのでカッとなって書いた。

/Users/shrkw/Library/Application Support/Firefox/Profiles/hoge/chrome/

以下にuserContent.cssを作って、以下を記述。

@-moz-document domain("example.org") {
    a:visited {
        border: 5px solid red !important;
    }
    a:visited img {
        opacity: 0.5 !important;
    }
}

ドメイン制御できるのが便利ですね。