Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Linkowanie ikony statków
- // @version 2.0
- // @match *hegira.eu/*
- // @match *hegira.com.pl/*
- // @match *www.hegira.com.pl/*
- // @match *www.hegira.eu/*
- // @include *hegira.eu/*
- // @include *hegira.com.pl/*
- // @include *www.hegira.com.pl/*
- // @include *www.hegira.eu/*
- // @author Thing
- // @copyright free
- // ==/UserScript==
- $('[src*="img/statki"]').each(function () {
- this.src = this.src.replace("gif", "png");
- });
- $('[src*="img/ico_s"]').each(function () {
- if (this.src.includes("black_wrota") || this.src.includes("Cruiser")) {
- this.src = this.src.replace("png", "gif");
- } else {
- this.src = this.src.replace("gif", "png");
- }
- });
- $('[src*="langondier"]').each(function () {
- this.src = this.src.replace("lang", "Lang");
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement