Invoicely CSV Generator

Unofficial Extension. Generates CSV Output for Invoicely invoices.

Invoicely CSV Generatorคืออะไร?

Invoicely CSV Generator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dai Rees และคุณลักษณะหลักของมันคือ "Unofficial Extension. Generates CSV Output for Invoicely invoices."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Invoicely CSV Generator

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

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

                        NOTE: This extension is *not* affiliated with Invoicely.com!

This extension generates a CSV representation of individual invoices, allowing you to copy and paste them into a spreadsheet program like Excel or other accounting software.

As-of version 1.2, this extension now also shows the Invoice name, number, description and due-date in the header on invoice child pages (such as Invoice activity, Invoice payments, Invoice comments) whereas otherwise there is no indication what invoice is currently being edited.                    

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

ชื่อ Invoicely CSV Generator Invoicely CSV Generator
ID bmknmffchacfcppemkllmpibknhokinh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/invoicely-csv-generator/bmknmffchacfcppemkllmpibknhokinh
คำอธิบาย Unofficial Extension. Generates CSV Output for Invoicely invoices.
ขนาดไฟล์ 21.35 KB
จำนวนการติดตั้ง 29
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2021-03-09
วันที่เผยแพร่ 2019-09-07
ผู้พัฒนา Dai Rees
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Invoicely CSV Generator",
    "description": "Unofficial Extension. Generates CSV Output for Invoicely invoices.",
    "version": "1.2",
    "icons": {
        "16": "Icon16.png",
        "24": "Icon24.png",
        "32": "Icon32.png",
        "48": "Icon48.png",
        "128": "Icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "Icon16.png",
            "24": "Icon24.png",
            "32": "Icon32.png",
            "48": "Icon48.png",
            "128": "Icon128.png"
        }
    },
    "permissions": [
        "https:\/\/*.invoicely.com\/",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.invoicely.com\/*"
            ],
            "js": [
                "ModuleHack.js",
                "ChromeStoragePromises.js",
                "InvoicelyExtract.js"
            ],
            "run_at": "document_start"
        }
    ]
}