EveryOrder Assistant

This extension assists EveryOrder users, capturing additional information about their orders.

EveryOrder Assistantคืออะไร?

EveryOrder Assistant เป็นส่วนขยายของ Chrome ที่พัฒนาโดย EveryOrder และคุณลักษณะหลักของมันคือ "This extension assists EveryOrder users, capturing additional information about their orders."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย EveryOrder Assistant

ดาวน์โหลดไฟล์ส่วนขยาย EveryOrder Assistant ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Save time printing all your Etsy orders in bulk.

The order printing process on Etsy can be be tedious and inefficient. EveryOrder was developed by an Etsy seller who shared the same frustration that other sellers have when it comes to printing orders.

When you sell a lot on Etsy, you want to fulfill your orders quickly and easily. If you use a printout of each order as a packing list or receipt, you know how time consuming it can be to print each order. EveryOrder allows you to print all your orders at once, from your own printer. It’s lightning fast and super easy to use. You can print all open orders and even control features like hiding/showing pricing info or buyer profile pictures -- perfect for gift receipts. Use the free trial period to check it out -- no credit card is required!

This extension allows you, the seller to extend the functionality of EveryOrder even further by tracking additional attributes of Etsy orders that might be useful during your fulfillment cycle - like Private Notes about an order.

Copyright © 2021 EveryOrder, LLC | The term 'Etsy' is a trademark of Etsy, Inc. This application uses the Etsy API but is not endorsed or certified by Etsy, Inc.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ EveryOrder Assistant EveryOrder Assistant
ID pcmdcekklcdcbjjogmighadkojendlim
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/everyorder-assistant/pcmdcekklcdcbjjogmighadkojendlim
คำอธิบาย This extension assists EveryOrder users, capturing additional information about their orders.
ขนาดไฟล์ 41.17 KB
จำนวนการติดตั้ง 40
เวอร์ชันปัจจุบัน 0.14
อัปเดตครั้งล่าสุด 2021-07-29
วันที่เผยแพร่ 2018-04-26
ผู้พัฒนา EveryOrder
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://everyorder.co/
URL หน้าช่วยเหลือ https://everyorder.co/support
URL หน้านโยบายความเป็นส่วนตัว https://everyorder.co/privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "EveryOrder Assistant",
    "description": "This extension assists EveryOrder users, capturing additional information about their orders.",
    "version": "0.14",
    "action": {
        "default_icon": "icon19.png"
    },
    "icons": {
        "16": "icon16.png",
        "19": "icon19.png",
        "32": "icon32.png",
        "38": "icon38.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "*:\/\/*.etsy.com\/your\/*"
            ],
            "js": [
                "eo-script.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.etsy.com\/*",
        "https:\/\/*.everyorder.co\/*"
    ],
    "background": {
        "service_worker": "background.js"
    }
}