├── .gitignore ├── BillomatInvoices ├── README.md ├── TimeEntriesConverter.js ├── billomat_icon.png ├── billomat_logo.png ├── form.json ├── localization.json ├── plugin.json └── script.js ├── ClockifyImporter ├── README.md ├── clockify_icon.png ├── form.json ├── localization.json ├── plugin.json └── script.js ├── EarlyImporter ├── form.json ├── icon.png ├── localization.json ├── plugin.json └── script.js ├── FreshBooksInvoices ├── OAuthAPIClient.js ├── README.md ├── TimeEntriesConverter.js ├── form.json ├── icon.png ├── localization.json ├── logo.png ├── plugin.json └── script.js ├── Hookmark ├── icon.png ├── localization.json └── plugin.json ├── JiraImporter ├── .editorconfig ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── form.json ├── jira_icon.png ├── localization.json ├── plugin.json └── script.js ├── LexofficeInvoices ├── README.md ├── TimeEntriesConverter.js ├── form.json ├── lexoffice_icon.png ├── lexoffice_logo.png ├── localization.json ├── plugin.json └── script.js ├── MiteImporter ├── icon.png ├── localization.json └── plugin.json ├── OpenProjectImporter ├── .editorconfig ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── form.json ├── localization.json ├── openproject_icon.png ├── plugin.json └── script.js ├── README.md ├── Raycast ├── icon.png ├── localization.json └── plugin.json ├── Send to Tyme.grandtotalplugin ├── Info.plist ├── README.md ├── de.lproj │ └── Localizable.strings ├── en.lproj │ └── Localizable.strings ├── grandtotal_icon.png ├── index.js ├── localization.json └── plugin.json ├── SevDeskInvoices ├── README.md ├── TimeEntriesConverter.js ├── form.json ├── localization.json ├── plugin.json ├── script.js ├── sevdesk_icon.png └── sevdesk_logo.png ├── TogglImporter ├── README.md ├── form.json ├── localization.json ├── plugin.json ├── script.js └── toggl_icon.png ├── Tyme.grandtotalplugin ├── Icon.icns ├── Info.plist ├── README.md ├── de.lproj │ └── Localizable.strings ├── en.lproj │ └── Localizable.strings ├── grandtotal_icon.png ├── index.js ├── localization.json └── plugin.json ├── Zapier ├── icon.png ├── localization.json └── plugin.json └── guides ├── importing_data.md ├── plugins_macos.png └── scripting_helpers.md /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /BillomatInvoices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/BillomatInvoices/README.md -------------------------------------------------------------------------------- /BillomatInvoices/TimeEntriesConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/BillomatInvoices/TimeEntriesConverter.js -------------------------------------------------------------------------------- /BillomatInvoices/billomat_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/BillomatInvoices/billomat_icon.png -------------------------------------------------------------------------------- /BillomatInvoices/billomat_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/BillomatInvoices/billomat_logo.png -------------------------------------------------------------------------------- /BillomatInvoices/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/BillomatInvoices/form.json -------------------------------------------------------------------------------- /BillomatInvoices/localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/BillomatInvoices/localization.json -------------------------------------------------------------------------------- /BillomatInvoices/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/BillomatInvoices/plugin.json -------------------------------------------------------------------------------- /BillomatInvoices/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/BillomatInvoices/script.js -------------------------------------------------------------------------------- /ClockifyImporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/ClockifyImporter/README.md -------------------------------------------------------------------------------- /ClockifyImporter/clockify_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/ClockifyImporter/clockify_icon.png -------------------------------------------------------------------------------- /ClockifyImporter/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/ClockifyImporter/form.json -------------------------------------------------------------------------------- /ClockifyImporter/localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/ClockifyImporter/localization.json -------------------------------------------------------------------------------- /ClockifyImporter/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/ClockifyImporter/plugin.json -------------------------------------------------------------------------------- /ClockifyImporter/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/ClockifyImporter/script.js -------------------------------------------------------------------------------- /EarlyImporter/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/EarlyImporter/form.json -------------------------------------------------------------------------------- /EarlyImporter/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/EarlyImporter/icon.png -------------------------------------------------------------------------------- /EarlyImporter/localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/EarlyImporter/localization.json -------------------------------------------------------------------------------- /EarlyImporter/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/EarlyImporter/plugin.json -------------------------------------------------------------------------------- /EarlyImporter/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/EarlyImporter/script.js -------------------------------------------------------------------------------- /FreshBooksInvoices/OAuthAPIClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/FreshBooksInvoices/OAuthAPIClient.js -------------------------------------------------------------------------------- /FreshBooksInvoices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/FreshBooksInvoices/README.md -------------------------------------------------------------------------------- /FreshBooksInvoices/TimeEntriesConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/FreshBooksInvoices/TimeEntriesConverter.js -------------------------------------------------------------------------------- /FreshBooksInvoices/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/FreshBooksInvoices/form.json -------------------------------------------------------------------------------- /FreshBooksInvoices/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/FreshBooksInvoices/icon.png -------------------------------------------------------------------------------- /FreshBooksInvoices/localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/FreshBooksInvoices/localization.json -------------------------------------------------------------------------------- /FreshBooksInvoices/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/FreshBooksInvoices/logo.png -------------------------------------------------------------------------------- /FreshBooksInvoices/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/FreshBooksInvoices/plugin.json -------------------------------------------------------------------------------- /FreshBooksInvoices/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/FreshBooksInvoices/script.js -------------------------------------------------------------------------------- /Hookmark/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/Hookmark/icon.png -------------------------------------------------------------------------------- /Hookmark/localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/Hookmark/localization.json -------------------------------------------------------------------------------- /Hookmark/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/Hookmark/plugin.json -------------------------------------------------------------------------------- /JiraImporter/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/JiraImporter/.editorconfig -------------------------------------------------------------------------------- /JiraImporter/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/JiraImporter/.prettierrc -------------------------------------------------------------------------------- /JiraImporter/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/JiraImporter/CHANGELOG.md -------------------------------------------------------------------------------- /JiraImporter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/JiraImporter/LICENSE -------------------------------------------------------------------------------- /JiraImporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/JiraImporter/README.md -------------------------------------------------------------------------------- /JiraImporter/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/JiraImporter/form.json -------------------------------------------------------------------------------- /JiraImporter/jira_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/JiraImporter/jira_icon.png -------------------------------------------------------------------------------- /JiraImporter/localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/JiraImporter/localization.json -------------------------------------------------------------------------------- /JiraImporter/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/JiraImporter/plugin.json -------------------------------------------------------------------------------- /JiraImporter/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/JiraImporter/script.js -------------------------------------------------------------------------------- /LexofficeInvoices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/LexofficeInvoices/README.md -------------------------------------------------------------------------------- /LexofficeInvoices/TimeEntriesConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/LexofficeInvoices/TimeEntriesConverter.js -------------------------------------------------------------------------------- /LexofficeInvoices/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/LexofficeInvoices/form.json -------------------------------------------------------------------------------- /LexofficeInvoices/lexoffice_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/LexofficeInvoices/lexoffice_icon.png -------------------------------------------------------------------------------- /LexofficeInvoices/lexoffice_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/LexofficeInvoices/lexoffice_logo.png -------------------------------------------------------------------------------- /LexofficeInvoices/localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/LexofficeInvoices/localization.json -------------------------------------------------------------------------------- /LexofficeInvoices/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/LexofficeInvoices/plugin.json -------------------------------------------------------------------------------- /LexofficeInvoices/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/LexofficeInvoices/script.js -------------------------------------------------------------------------------- /MiteImporter/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/MiteImporter/icon.png -------------------------------------------------------------------------------- /MiteImporter/localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/MiteImporter/localization.json -------------------------------------------------------------------------------- /MiteImporter/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/MiteImporter/plugin.json -------------------------------------------------------------------------------- /OpenProjectImporter/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/OpenProjectImporter/.editorconfig -------------------------------------------------------------------------------- /OpenProjectImporter/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/OpenProjectImporter/.prettierrc -------------------------------------------------------------------------------- /OpenProjectImporter/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/OpenProjectImporter/CHANGELOG.md -------------------------------------------------------------------------------- /OpenProjectImporter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/OpenProjectImporter/LICENSE -------------------------------------------------------------------------------- /OpenProjectImporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/OpenProjectImporter/README.md -------------------------------------------------------------------------------- /OpenProjectImporter/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/OpenProjectImporter/form.json -------------------------------------------------------------------------------- /OpenProjectImporter/localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/OpenProjectImporter/localization.json -------------------------------------------------------------------------------- /OpenProjectImporter/openproject_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/OpenProjectImporter/openproject_icon.png -------------------------------------------------------------------------------- /OpenProjectImporter/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/OpenProjectImporter/plugin.json -------------------------------------------------------------------------------- /OpenProjectImporter/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/OpenProjectImporter/script.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/README.md -------------------------------------------------------------------------------- /Raycast/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/Raycast/icon.png -------------------------------------------------------------------------------- /Raycast/localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/Raycast/localization.json -------------------------------------------------------------------------------- /Raycast/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/Raycast/plugin.json -------------------------------------------------------------------------------- /Send to Tyme.grandtotalplugin/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/Send to Tyme.grandtotalplugin/Info.plist -------------------------------------------------------------------------------- /Send to Tyme.grandtotalplugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/Send to Tyme.grandtotalplugin/README.md -------------------------------------------------------------------------------- /Send to Tyme.grandtotalplugin/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/Send to Tyme.grandtotalplugin/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Send to Tyme.grandtotalplugin/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/Send to Tyme.grandtotalplugin/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Send to Tyme.grandtotalplugin/grandtotal_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/Send to Tyme.grandtotalplugin/grandtotal_icon.png -------------------------------------------------------------------------------- /Send to Tyme.grandtotalplugin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/Send to Tyme.grandtotalplugin/index.js -------------------------------------------------------------------------------- /Send to Tyme.grandtotalplugin/localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/Send to Tyme.grandtotalplugin/localization.json -------------------------------------------------------------------------------- /Send to Tyme.grandtotalplugin/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/Send to Tyme.grandtotalplugin/plugin.json -------------------------------------------------------------------------------- /SevDeskInvoices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/SevDeskInvoices/README.md -------------------------------------------------------------------------------- /SevDeskInvoices/TimeEntriesConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/SevDeskInvoices/TimeEntriesConverter.js -------------------------------------------------------------------------------- /SevDeskInvoices/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/SevDeskInvoices/form.json -------------------------------------------------------------------------------- /SevDeskInvoices/localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/SevDeskInvoices/localization.json -------------------------------------------------------------------------------- /SevDeskInvoices/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/SevDeskInvoices/plugin.json -------------------------------------------------------------------------------- /SevDeskInvoices/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/SevDeskInvoices/script.js -------------------------------------------------------------------------------- /SevDeskInvoices/sevdesk_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/SevDeskInvoices/sevdesk_icon.png -------------------------------------------------------------------------------- /SevDeskInvoices/sevdesk_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/SevDeskInvoices/sevdesk_logo.png -------------------------------------------------------------------------------- /TogglImporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/TogglImporter/README.md -------------------------------------------------------------------------------- /TogglImporter/form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/TogglImporter/form.json -------------------------------------------------------------------------------- /TogglImporter/localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/TogglImporter/localization.json -------------------------------------------------------------------------------- /TogglImporter/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/TogglImporter/plugin.json -------------------------------------------------------------------------------- /TogglImporter/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/TogglImporter/script.js -------------------------------------------------------------------------------- /TogglImporter/toggl_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/TogglImporter/toggl_icon.png -------------------------------------------------------------------------------- /Tyme.grandtotalplugin/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/Tyme.grandtotalplugin/Icon.icns -------------------------------------------------------------------------------- /Tyme.grandtotalplugin/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/Tyme.grandtotalplugin/Info.plist -------------------------------------------------------------------------------- /Tyme.grandtotalplugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/Tyme.grandtotalplugin/README.md -------------------------------------------------------------------------------- /Tyme.grandtotalplugin/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/Tyme.grandtotalplugin/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Tyme.grandtotalplugin/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/Tyme.grandtotalplugin/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Tyme.grandtotalplugin/grandtotal_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/Tyme.grandtotalplugin/grandtotal_icon.png -------------------------------------------------------------------------------- /Tyme.grandtotalplugin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/Tyme.grandtotalplugin/index.js -------------------------------------------------------------------------------- /Tyme.grandtotalplugin/localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/Tyme.grandtotalplugin/localization.json -------------------------------------------------------------------------------- /Tyme.grandtotalplugin/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/Tyme.grandtotalplugin/plugin.json -------------------------------------------------------------------------------- /Zapier/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/Zapier/icon.png -------------------------------------------------------------------------------- /Zapier/localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/Zapier/localization.json -------------------------------------------------------------------------------- /Zapier/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/Zapier/plugin.json -------------------------------------------------------------------------------- /guides/importing_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/guides/importing_data.md -------------------------------------------------------------------------------- /guides/plugins_macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/guides/plugins_macos.png -------------------------------------------------------------------------------- /guides/scripting_helpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyme-app/plugins/HEAD/guides/scripting_helpers.md --------------------------------------------------------------------------------