Replace FR forums favicon

Replaces Flight Rising forum favicon to generic red diamond

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name        Replace FR forums favicon
// @version     1.0
// @namespace   flight_favicon
// @description Replaces Flight Rising forum favicon to generic red diamond
// @include     http://www1.flightrising.com/forums*
// ==/UserScript==

var head = document.getElementsByTagName('head')[0];
var icon = document.createElement('link');

icon.setAttribute('type', 'image/x-icon');
icon.setAttribute('rel', 'shortcut icon');
icon.setAttribute('href', 'data:image/x-icon;base64,AAABAAEAEBAAAAEAIABoBAAAFgAAACgAAAAQAAAAIAAAAAEAIAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQRQCQYX/wkGF/8BAQRQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQRQBwQR/25X0P8mGVz/BwQR/wEBBFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQRQBwQR/25X0P9uV9D/Jhlc/yYZXP8HBBH/AQEEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQRQBwQR/25X0P9uV9D/blfQ/yYZXP8mGVz/Jhlc/wcEEf8BAQRQAAAAAAAAAAAAAAAAAAAAAAAAAAABAQRQBwQR/25X0P9uV9D/blfQ/25X0P8mGVz/Jhlc/yYZXP8mGVz/BwQR/wEBBFAAAAAAAAAAAAAAAAABAQRQBwQR/25X0P9uV9D/blfQ/25X0P9cQ8r/XEPK/yYZXP8mGVz/Jhlc/yYZXP8HBBH/AQEEUAAAAAABAQRQBwQR/25X0P9uV9D/blfQ/25X0P9cQ8r/XEPK/1xDyv9cQ8r/Jhlc/yYZXP8mGVz/Jhlc/wcEEf8BAQRQCQYX/25X0P9uV9D/blfQ/25X0P9cQ8r/XEPK/1xDyv9cQ8r/XEPK/1xDyv8mGVz/Jhlc/yYZXP8mGVz/CQYX/wkGF/+YiN3/mIjd/5iI3f+YiN3/XEPK/1xDyv9cQ8r/XEPK/1xDyv9cQ8r/blfQ/25X0P9uV9D/blfQ/wkGF/8BAQRQBwQR/5iI3f+YiN3/mIjd/5iI3f9cQ8r/XEPK/1xDyv9cQ8r/blfQ/25X0P9uV9D/blfQ/wcEEf8BAQRQAAAAAAEBBFAHBBH/mIjd/5iI3f+YiN3/mIjd/1xDyv9cQ8r/blfQ/25X0P9uV9D/blfQ/wcEEf8BAQRQAAAAAAAAAAAAAAAAAQEEUAcEEf+YiN3/mIjd/5iI3f+YiN3/blfQ/25X0P9uV9D/blfQ/wcEEf8BAQRQAAAAAAAAAAAAAAAAAAAAAAAAAAABAQRQBwQR/5iI3f+YiN3/mIjd/25X0P9uV9D/blfQ/wcEEf8BAQRQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEBBFAHBBH/mIjd/5iI3f9uV9D/blfQ/wcEEf8BAQRQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEEUAcEEf+YiN3/blfQ/wcEEf8BAQRQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQRQCQYX/wkGF/8BAQRQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/n8AAPw/AAD4HwAA8A8AAOAHAADAAwAAgAEAAAAAAAAAAAAAgAEAAMADAADgBwAA8A8AAPgfAAD8PwAA/n8AAA==');

head.appendChild(icon);