Invoicely CSV Generator

Unofficial Extension. Generates CSV Output for Invoicely invoices.

Invoicely CSV Generator란 무엇입니까?

Invoicely CSV Generator은(는) Dai Rees에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Unofficial Extension. Generates CSV Output for Invoicely invoices."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Invoicely CSV Generator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
        }
    ]
}