Invoicely CSV Generator

Unofficial Extension. Generates CSV Output for Invoicely invoices.

Invoicely CSV Generator क्या है?

Invoicely CSV Generator Dai Rees द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Unofficial Extension. Generates CSV Output for Invoicely invoices."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Invoicely CSV Generator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
        }
    ]
}