Aliexpress Shopping Card Editor

Adds support to select items from the cart before ordering

当前为 2018-03-15 提交的版本,查看 最新版本

// ==UserScript==
// @name        Aliexpress Shopping Card Editor
// @name:ru        Редактор корзины Aliexpress
// @version        1.2.0
// @description Adds support to select items from the cart before ordering
// @description:ru Добавляет возможность выбирать товары из корзины перед заказом
// @author         DeNcHiK3713
// @match          *://shoppingcart.aliexpress.com/shopcart/shopcartDetail.htm
// @match          *://shoppingcart.aliexpress.com/shopcart/shopcartDetail.htm?*
// @grant          none
// @namespace      https://greasyfork.org/users/174390
// ==/UserScript==

var accounting_min_script = document.createElement('script');
accounting_min_script.setAttribute('src', 'https://openexchangerates.github.io/accounting.js/accounting.min.js');
(document.body || document.head || document.documentElement).appendChild(accounting_min_script);
var money_min_script = document.createElement('script');
money_min_script.setAttribute('src', 'https://openexchangerates.github.io/money.js/money.min.js');
(document.body || document.head || document.documentElement).appendChild(money_min_script);
var aliexpress_shopping_card_editor_library_script = document.createElement('script');
aliexpress_shopping_card_editor_library_script.setAttribute('src', 'https://greasyfork.org/scripts/39395-aliexpress-shopping-card-editor-library/code/Aliexpress%20Shopping%20Card%20Editor%20Library.js?version=258895');
(document.body || document.head || document.documentElement).appendChild(aliexpress_shopping_card_editor_library_script );