// ==UserScript==
// @name 淘宝卖家宝贝分类id SellerCidsFinder
// @namespace https://github.com/eurekazheng/Taobao-Vendor-Migration
// @description 淘宝卖家后台(旺铺)显示宝贝分类id Displays seller_cids on category page of Taobao vendor backend
// @include https://siteadmin.taobao.com/category/index.htm*
// @require http://ajax.aspnetcdn.com/ajax/jquery/jquery-1.7.2.js
// @version 1
// @grant none
(function(){
$(".menu-wrapper").append("
");
$(".input-text.J_CatName").each(function(){
$(this).val($(this).val() + " " + $(this).attr("id").substr(5, 10));
});
})();
// @downloadURL https://update.greasyfork.icu/scripts/31600/%E6%B7%98%E5%AE%9D%E5%8D%96%E5%AE%B6%E5%AE%9D%E8%B4%9D%E5%88%86%E7%B1%BBid%20SellerCidsFinder.user.js
// @updateURL https://update.greasyfork.icu/scripts/31600/%E6%B7%98%E5%AE%9D%E5%8D%96%E5%AE%B6%E5%AE%9D%E8%B4%9D%E5%88%86%E7%B1%BBid%20SellerCidsFinder.meta.js
// ==/UserScript==