modifyphotos

tmodifyphotos

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         modifyphotos
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  tmodifyphotos
// @author       You
// @match        http://47.107.106.156/*
// @match        http://122.13.25.247/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=106.156
// @grant       GM_addStyle
// @license     MIT
// ==/UserScript==

(function() {
    'use strict';
    let weburl = unsafeWindow.location.href;
    if (weburl.indexOf("47.107.106.156") != -1) {
        GM_addStyle('.main{background:url(http://47.107.106.156:8888/image/default2/logo/login_bg2.png) bottom no-repeat; margin: auto;background-size:100% 100% !important}');
        GM_addStyle('.main-logo{display: inline-block;background:url(http://47.107.106.156:8888/image/default2/logo/header2.png)no-repeat; height: 60px;width: 100%  !important}');
        GM_addStyle('.main-mbg{background:url(http://47.107.106.156:8888/image/default2/logo/mbg2.jpg);background-size:100% 100% !important}');
    }
    if (weburl.indexOf("122.13.25.247") != -1) {
        GM_addStyle('.main{background:url(http://122.13.25.247:8888/image/default2/logo/login_bg2.png) bottom no-repeat; margin: auto;background-size:100% 100% !important}');
        GM_addStyle('.main-mbg{background:url(http://122.13.25.247:8888/image/default2/logo/mbg2.jpg);background-size:100% 100% !important}');
        GM_addStyle('.main-logo{display: inline-block;background:url(http://122.13.25.247:8888/image/default2/logo/header2.png)no-repeat; height: 60px;width: 100%  !important}');
    }
})();