BigBisous

Wikipédia langues

Dec 13th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name        Wikipédia langues
  3. // @namespace   wikipedia
  4. // @include     http://*.wikipedia.org/*
  5. // @include     https://*.wikipedia.org/*
  6. // @version     1
  7. // @grant       none
  8. // ==/UserScript==
  9. //injectCSS('#p-lang a[lang="fr"], #p-lang a[lang="en"] { font-weight: bold!important; color:red!important; }');
  10. function addGlobalStyle(css) {
  11.   var head,
  12.   style;
  13.   head = document.getElementsByTagName('head') [0];
  14.   if (!head) {
  15.     return;
  16.   }
  17.   style = document.createElement('style');
  18.   style.type = 'text/css';
  19.   style.innerHTML = css;
  20.   head.appendChild(style);
  21. }
  22. addGlobalStyle('#p-lang a[lang="fr"], #p-lang a[lang="en"] { font-weight: bold!important; color:red!important; }');
Add Comment
Please, Sign In to add comment