6 X Rolls General Purpose Clear Transparent Tape - 48mm x 66m

$29.49
people are viewing this right now
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Description
  • Excellent For Long Term Storage: Our clear parcel tape is made with a water-based acrylic glue that creates a long-lasting hold; It also has excellent ultraviolet stability making it highly resistant to aging, yellowing, weathering, and discoloration
  • You Won't Have To Worry About Tangles: Anyone that has used packing tape before has experienced how quickly the roll can become a tangled mess; That won't happen with this tape; The low static coating allows you to unwind without tangles
  • Securely Seal Many Types Of Boxes: This thick, clear tape will be your go-to adhesive tape for sealing packing boxes, moving boxes, cartons, and other cardboard boxes and packaging used; Tasks big or small, this strong tape can handle them all
  • Sticky adhesive for superior hold and seal-Designed for longevity, this box tape is resistant to UV and moisture and withstands extreme temperatures without peeling or cracking for a strong and secure hold you can count on.
  • SAVE BIG - Huge value! 6 extra-long rolls of 48mm x 66m tape for packing boxes. Super sticky and strong, Spare yourself the premium of overpriced brand names.

Package includes:

  • 6X Rolls Clear Transparent Tapes.
1
Select product
Selected 0 item(s)
class SpzCheckoutNotificationHandler extends SPZ.BaseElement { constructor(element) { super(element); this.timer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } sendVariantListUpdateEvent_(data) { const messageData = { type: "theme_variant_list_update", data: { orderToken: data.order_token || data.order_id } }; clearInterval(this.timer_); if(!window.CheckoutAPI) { this.timer_ = setInterval(() => { if(window.CheckoutAPI) { clearInterval(this.timer_); postMessage && postMessage(messageData); } }, 500); } else { postMessage && postMessage(messageData); } } buildCallback() { this.action_ = SPZServices.actionServiceForDoc(this.element); this.registerAction('sendVariantListUpdateEvent', (param) => { this.sendVariantListUpdateEvent_(param.args.data); }); } } SPZ.defineElement('spz-custom-checkout-notification-handler', SpzCheckoutNotificationHandler); function handleGetOrderInfo(data) { if (data.order_id) { let api = `/api/checkout/order/info?order_id=${data.order_id}`; return Promise.resolve(api); } return Promise.reject({}); } function addEventListenerKickItems(data) { if (data.type === 'checkout_kick_items') { return Promise.resolve(data); } return Promise.reject({}); } exportFunction('handleGetOrderInfo', handleGetOrderInfo) exportFunction('addEventListenerKickItems', addEventListenerKickItems)