Cpasbien - Vert sur French

Colore en vert les torrent FRENCH

目前為 2015-08-27 提交的版本,檢視 最新版本

// ==UserScript==
// @name        Cpasbien - Vert sur French
// @namespace   https://gf.qytechs.cn/fr/users/11667-aymeric-maitre
// @description Colore en vert les torrent FRENCH
// @include     http*://*cpasbien.*/*
// @version     1
// @grant       none
// @require     https://code.jquery.com/jquery-2.1.3.min.js
// ==/UserScript==

this.jQuery = jQuery.noConflict(true);
var color = 'rgb(74, 231, 126)';

jQuery(document).ready(function() {
  
  jQuery('div[class*="ligne"]').each(function () {
    try { 	
    	var Balise = jQuery(this).find("a.titre");
      	var french = Balise.attr('href').search("french");
      	if (french != -1) {
      		jQuery(this).attr('style', 'background-color:' + color + ';');
      	};

    } catch(e) {
      console.error(e);
    }
  });
});

QingJ © 2025

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