Stavki_ENVD_in_memo

Создаёт список ставок ЕНВД. origin https://gf.qytechs.cn/ru/scripts/8427-sale-envd

// ==UserScript==
// @name           Stavki_ENVD_in_memo
// @namespace      http://virtonomic*.*/*/main/geo/regionENVD/*
// @description    Создаёт список ставок ЕНВД. origin https://gf.qytechs.cn/ru/scripts/8427-sale-envd
// @include        http*://virtonomic*.*/*/main/geo/regionENVD/*
// @version 		0.0.2.20150306114003
// ==/UserScript==
var win = (typeof(unsafeWindow) != 'undefined' ? unsafeWindow : top.window);
$=win.$;
var text='';
$('table.list>tbody>tr[class]').each(function(){
  $('td:contains("%")',this).each(function(){
    var percCell = $(this);
    var nameCell = percCell.prev();
    text += '"'+nameCell.text()+'":'+percCell.text().replace(/\s+/,'').replace('%','')+',';
    //console.log(text);
  });
});
//alert(text.slice(0,-1));
$('table.list').first().before('<textarea id="stavki_envd_memo" style="width:100%" rows="3"></textarea>');
$('#stavki_envd_memo').val(text.slice(0,-1));

QingJ © 2025

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