Go to Customer Button for QuickBooks Online

This extension adds a button to the invoice screen

Go to Customer Button for QuickBooks Onlineคืออะไร?

Go to Customer Button for QuickBooks Online เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Simon C และคุณลักษณะหลักของมันคือ "This extension adds a button to the invoice screen"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Go to Customer Button for QuickBooks Online

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

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

                        This extension adds a button to the invoice screen, allowing users to quickly visit the customer account for the customer associated with the invoice.                    

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

ชื่อ Go to Customer Button for QuickBooks Online Go to Customer Button for QuickBooks Online
ID oihjnaipmkladihjdmlladafdidmclpg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/go-to-customer-button-for/oihjnaipmkladihjdmlladafdidmclpg
คำอธิบาย This extension adds a button to the invoice screen
ขนาดไฟล์ 74.59 KB
จำนวนการติดตั้ง 37
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2018-11-21
วันที่เผยแพร่ 2018-11-21
ผู้พัฒนา Simon C
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Go to Customer Button for QuickBooks Online",
    "description": "This extension adds a button to the invoice screen",
    "version": "1.0.1",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.qbo.intuit.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "activeTab",
        "http:\/\/*.qbo.intuit.com\/*",
        "https:\/\/*.qbo.intuit.com\/*"
    ]
}