我有弹出式聊天,来自twitch.tv,嵌入在我的网页中,在<iframe>
.
我目前有这个用户脚本来改变一些颜色:
// ==UserScript==
// @name Twitch Font Color Fix
// @namespace void
// @description Replaces Spring Green, among other, equally cryptic font colors from the chat on www.twitch.tv, with darker versions of the original color.
// @match http://www.twitch.tv/*
// @include http://www.twitch.tv/*
// @version 1.0
// ==/UserScript==
var springStyle = document.createElement("style");
springStyle.type = "text/css";
springStyle.textContent = '*[style*="#00FF7F"]{color: #007F3F !important;}*[style*="#9ACD32"]{color: #568000 !important;}*[style*="#00FF00"]{color: #007F00 !important;}';
document.head.appendChild(springStyle);
这可行,但我想将颜色更改合并到我的网站中,这样就不需要用户脚本。我怎样才能做到这一点?
顺便提一句:
- 我试图通过启用它
<script src="blabla.js"></script>
。它没有用。 $(document).ready(function () {});
也没有工作。