ColoredMercury

Adds site's colors to the mobile skin of FANDOM

  1. // ==UserScript==
  2. // @name ColoredMercury
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.11
  5. // @description Adds site's colors to the mobile skin of FANDOM
  6. // @author Unai Mengual
  7. // @match http://*.wikia.com/*
  8. // @grant none
  9. // @require https://code.jquery.com/jquery-2.1.4.min.js
  10. // ==/UserScript==
  11.  
  12. jQuery(function () {
  13. 'use strict';
  14. if (!jQuery('body').hasClass('mobile-wiki')) {
  15. return;
  16. }
  17. jQuery.get('/__load/-/only=scripts&skin=oasis/startup', function (startup) {
  18. var color = startup.replace(/[\s\S]*color-buttons":"(#[A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})[\s\S]*/, '$1');
  19. jQuery('.wiki-page-header:not(.has-hero-image), .portable-infobox .pi-secondary-background')
  20. .css('background', color);
  21. jQuery('.edit-section .icon').not('.wiki-page-header__wrapper .edit-section .icon')
  22. .css('fill', color + '!important');
  23. });
  24. });

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址