최근에 이전 컴퓨터를 교체했으며 Firefox를 다시 설정해야했습니다. 복원하고자하는 주요 사항 중 하나는 웹 사이트의 배경색을 변경 한 Greasemonkey 스크립트였습니다.
그러므로 나는 내가 전에 사용했던 것을 찾을 수 없다는 것에 약간 화가났다. 간단히 말해, 여기 내 오래된 PC의 것이 있습니다.
이 스크립트는 내 작품이 아닙니다
모든 학점은 Howard Smith에게 가야합니다. 이것은 원래 Userscripts.org에 게시되었으며 현재 사용할 수없는 것으로 보입니다.
Greasemonkey에서 새 사용자 스크립트를 작성하고 다음을 붙여 넣기 만하면됩니다.
(function () {
function noWhiteBackgroundColor() {
function changeBackgroundColor(x) { // Auto change colors too close to white
var backgroundColorRGB = window.getComputedStyle(x, null).backgroundColor; // Get background-color
if(backgroundColorRGB != "transparent") { // Convert hexadecimal color to RGB color to compare
var RGBValuesArray = backgroundColorRGB.match(/\d+/g); // Get RGB values
var red = RGBValuesArray[0];
var green = RGBValuesArray[1];
var blue = RGBValuesArray[2];
// ============================================================================
// Set the base colors you require:
// Use: http://www.colorpicker.com
// to find the RGB values of the base colour you wish to
// suppress white backgrounds with:
// Default gray provided:
// ============================================================================
var red_needed = 220;
var green_needed = 220;
var blue_needed = 255;
if (red>=220 && green>=220 && blue>=220) { // White range detection
if (red>=250 && red<=255 && green>=250 && green<=255 && blue>=250 && blue<=255) {
red_needed += 0;
green_needed += 0; }
else if (red>=240 && red<=255 && green>=240 && green<=255 && blue>=240 && blue<=255) {
red_needed += 6;
green_needed += 3; }
else if (red>=230 && red<=255 && green>=230 && green<=255 && blue>=230 && blue<=255) {
red_needed += 10;
green_needed += 5; }
else if (red>=220 && red<=255 && green>=220 && green<=255 && blue>=220 && blue<=255) {
red_needed += 14;
green_needed += 7; }
x.style.backgroundColor = "rgb( " + red_needed + ", " + green_needed + ", " + blue_needed + ")"; // The background-color you want
}
}
}
var allElements=document.getElementsByTagName("*"); // Get all elements on a page
for(var i=0; i<allElements.length; i++) {
changeBackgroundColor(allElements[i]);}
}
window.addEventListener("DOMContentLoaded",noWhiteBackgroundColor, false);
})();
나는 이것을 거의 2 년 동안 사용 해 왔으며 흰색 배경을 변경하지 못한 웹 사이트를 생각할 수 없습니다.