Invoicely CSV Generator
Unofficial Extension. Generates CSV Output for Invoicely invoices.
Co to jest Invoicely CSV Generator?
Invoicely CSV Generator to rozszerzenie Chrome opracowane przez Dai Rees, a jego główną funkcją jest „Unofficial Extension. Generates CSV Output for Invoicely invoices.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Invoicely CSV Generator
Pobierz pliki rozszerzeń Invoicely CSV Generator w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | bmknmffchacfcppemkllmpibknhokinh |
| Oficjalny URL | https://chromewebstore.google.com/detail/invoicely-csv-generator/bmknmffchacfcppemkllmpibknhokinh |
| Opis | Unofficial Extension. Generates CSV Output for Invoicely invoices. |
| Rozmiar pliku | 21.35 KB |
| Liczba instalacji | 29 |
| Aktualna Wersja | 1.2 |
| Ostatnia Aktualizacja | 2021-03-09 |
| Data Publikacji | 2019-09-07 |
| Deweloper | Dai Rees |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | 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"
}
]
} | |