Advertisement
Guest User

GBF – Replace Home Image

a guest
Jan 16th, 2019
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         GBF – Replace Home Image
  3. // @author       ~
  4. // @namespace    ~
  5. // @version      v1.0.0
  6. // @description  Replaces home image with Glorybringer Djeeta
  7. // @match        http://game.granbluefantasy.jp/
  8. // ==/UserScript==
  9.  
  10. var stylesheet = `
  11. .img-myimage{
  12.     background-image: url("http://game-a1.granbluefantasy.jp/assets_en/img/sp/assets/leader/my/230301_sw_1_01.png");
  13.     box-sizing: border-box;
  14.     padding-left: 320px;
  15.     background-size: 100%;
  16. }`;
  17.  
  18. // injectStylesheet inserts `stylesheet` to the page
  19. function injectStylesheet(stylesheet) {
  20.     var stylesheetEl = document.createElement('style');
  21.     stylesheetEl.innerHTML = stylesheet;
  22.     document.body.appendChild(stylesheetEl);
  23. }
  24.  
  25. injectStylesheet(stylesheet);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement