├── .gitbook └── assets │ ├── Screenshot from 2019-03-23 13-04-51.png │ ├── Screenshot from 2019-03-23 13-47-57.png │ ├── User recognition - Donor care.png │ ├── account-setup.png │ ├── account_mail_tab.png │ ├── add-on-in-menu (1).png │ ├── add-on-in-menu.png │ ├── all_message_attachments.png │ ├── bitmap.png │ ├── browserAction (1).png │ ├── browserAction.png │ ├── browser_action_context.png │ ├── browseraction (1).png │ ├── browseraction.png │ ├── build details.svg.png │ ├── build-details.svg.png │ ├── cloud.PNG │ ├── cloud.png │ ├── composeAction.png │ ├── compose_attachments_context.png │ ├── composeaction.png │ ├── dubug-addons.png │ ├── editable (1).png │ ├── editable.png │ ├── failure-summary.png │ ├── folder_pane.PNG │ ├── folder_pane.png │ ├── guide001.png │ ├── guide002.png │ ├── guide003.png │ ├── guide004.png │ ├── guide005.png │ ├── guide006.png │ ├── guide007.png │ ├── guide008 (1).png │ ├── guide008 (2).png │ ├── guide008.png │ ├── guide009.png │ ├── guide010.png │ ├── guide011.png │ ├── hello-word-2.png │ ├── hello-word-3-try.png │ ├── hello-word-3.png │ ├── hello-word-load.png │ ├── hello-word.png │ ├── hello-world-4 (1).png │ ├── hello-world-4.png │ ├── hello-world-addon-loaded.png │ ├── hello-world-addon.png │ ├── hello-world-javascript-alert (1).png │ ├── hello-world-javascript-alert.png │ ├── hello_world_element.png │ ├── hello_world_menu_item.png │ ├── hello_world_pop_up.png │ ├── image (1) (1) (1).png │ ├── image (1) (1).png │ ├── image (1).png │ ├── image (2) (1) (1) (1).png │ ├── image (2) (1) (1).png │ ├── image (2) (1).png │ ├── image (2).png │ ├── image (3).png │ ├── image (4).png │ ├── image.png │ ├── import_export_tool.png │ ├── ind2ex (1).png │ ├── ind2ex.png │ ├── index.png │ ├── internet-16px.png │ ├── internet-32px.png │ ├── internet.png │ ├── link-preview.png │ ├── link.PNG │ ├── link.png │ ├── load-temp-addon.png │ ├── mda.png │ ├── message-header (1).png │ ├── message-header.png │ ├── message_attachments_context.png │ ├── message_list.PNG │ ├── message_list.png │ ├── new_address_book.png │ ├── options (1).PNG │ ├── options (1).png │ ├── options.PNG │ ├── options.png │ ├── page.PNG │ ├── page.png │ ├── screen1.png │ ├── screen2.png │ ├── screen3.PNG │ ├── screen3.png │ ├── screen4.png │ ├── screen5.png │ ├── screen6.png │ ├── screen7.png │ ├── screen8 (1).png │ ├── screen8.png │ ├── screenshot-from-2019-03-23-13-04-51.png │ ├── screenshot-from-2019-03-23-13-47-57.png │ ├── selection.PNG │ ├── selection.png │ ├── spaces_toolbar.png │ ├── tab.PNG │ ├── tab.png │ ├── tb-channels.png │ ├── try-target (1).jpeg │ ├── try-target.jpeg │ ├── trybuilds (1).jpeg │ ├── trybuilds (2).jpeg │ ├── trybuilds (3).jpeg │ ├── trybuilds.jpeg │ ├── trytarget (1).jpeg │ ├── trytarget.jpeg │ ├── webext_diagram (1).png │ ├── webext_diagram.png │ ├── webextension-anatomy.png │ ├── which artifact build.svg (1).png │ ├── which artifact build.svg.png │ ├── which-artifact-build.svg (1).png │ ├── which-artifact-build.svg.png │ └── windows-version-screen.png ├── .gitignore ├── LICENSE ├── README.md ├── SUMMARY.md ├── add-ons ├── about-add-ons.md ├── community.md ├── hello-world-add-on │ ├── README.md │ ├── using-a-background-page.md │ ├── using-content-scripts.md │ └── using-webextension-apis.md ├── mailextensions │ ├── README.md │ ├── experiments.md │ ├── supported-manifest-keys.md │ ├── supported-ui-elements.md │ └── supported-webextension-api.md ├── resources │ ├── README.md │ └── tips-and-tricks.md ├── updating │ ├── README.md │ ├── historical-overview │ │ ├── README.md │ │ ├── bootstrapped.md │ │ ├── legacy-to-modern.md │ │ ├── overlays.md │ │ └── wrapped-to-modern.md │ ├── tb102 │ │ ├── README.md │ │ └── adapt-to-changes-in-thunderbird-92-102.md │ ├── tb115 │ │ ├── README.md │ │ └── adapt-to-changes-in-thunderbird-103-115.md │ ├── tb128.md │ ├── tb68 │ │ ├── README.md │ │ └── changes.md │ ├── tb78 │ │ ├── README.md │ │ └── changes.md │ ├── tb91 │ │ ├── README.md │ │ └── changes.md │ └── updates-for-thunderbird-140.md ├── web-extension-themes.md └── whats-new │ ├── README.md │ └── manifest-v3.md ├── assets └── hello_world_pop_up.png ├── planning ├── android-roadmap.md ├── ios-roadmap.md ├── roadmap.md └── standards-status.md ├── releases ├── cadence.md ├── channels.md ├── feature-flags.md ├── release-notes.md ├── tracking-fixes.md └── uplifting-fixes.md └── thunderbird-development ├── bug-triaging ├── README.md ├── bug-status-classification.md ├── bug-types.md ├── garbage-collection.md └── narrow-the-scope.md ├── building-thunderbird ├── README.md ├── artifact-builds.md ├── linux-build-prerequisites.md ├── macos-build-prerequisites.md └── windows-build-prerequisites.md ├── codebase-overview ├── README.md ├── account-configuration.md ├── address-book.md ├── chat │ ├── README.md │ ├── chat-core-protocols.md │ ├── contacts.md │ ├── keyboard-shortcuts.md │ ├── message-styles.md │ └── notifications.md └── mail-front-end.md ├── fixing-a-bug ├── README.md ├── bug-triaging │ ├── README.md │ ├── bug-status-classification.md │ ├── bug-types.md │ ├── garbage-collection.md │ └── narrow-the-scope.md ├── care-and-feeding-of-the-tree.md ├── landing-a-patch.md ├── lint-and-format-code.md ├── try-server.md ├── using-eslint.md ├── using-mercurial-bookmarks.md └── using-mercurial-queues.md ├── getting-started.md ├── hello-world.md ├── setting-up-a-build-environment.md ├── testing ├── README.md ├── adding-tests.md ├── running-tests.md └── writing-mochitest-tests.md └── tutorials-and-examples ├── README.md ├── hello-world.md └── thunderbird-live-development-videos.md /.gitbook/assets/Screenshot from 2019-03-23 13-04-51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/Screenshot from 2019-03-23 13-04-51.png -------------------------------------------------------------------------------- /.gitbook/assets/Screenshot from 2019-03-23 13-47-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/Screenshot from 2019-03-23 13-47-57.png -------------------------------------------------------------------------------- /.gitbook/assets/User recognition - Donor care.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/User recognition - Donor care.png -------------------------------------------------------------------------------- /.gitbook/assets/account-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/account-setup.png -------------------------------------------------------------------------------- /.gitbook/assets/account_mail_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/account_mail_tab.png -------------------------------------------------------------------------------- /.gitbook/assets/add-on-in-menu (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/add-on-in-menu (1).png -------------------------------------------------------------------------------- /.gitbook/assets/add-on-in-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/add-on-in-menu.png -------------------------------------------------------------------------------- /.gitbook/assets/all_message_attachments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/all_message_attachments.png -------------------------------------------------------------------------------- /.gitbook/assets/bitmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/bitmap.png -------------------------------------------------------------------------------- /.gitbook/assets/browserAction (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/browserAction (1).png -------------------------------------------------------------------------------- /.gitbook/assets/browserAction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/browserAction.png -------------------------------------------------------------------------------- /.gitbook/assets/browser_action_context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/browser_action_context.png -------------------------------------------------------------------------------- /.gitbook/assets/browseraction (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/browseraction (1).png -------------------------------------------------------------------------------- /.gitbook/assets/browseraction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/browseraction.png -------------------------------------------------------------------------------- /.gitbook/assets/build details.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/build details.svg.png -------------------------------------------------------------------------------- /.gitbook/assets/build-details.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/build-details.svg.png -------------------------------------------------------------------------------- /.gitbook/assets/cloud.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/cloud.PNG -------------------------------------------------------------------------------- /.gitbook/assets/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/cloud.png -------------------------------------------------------------------------------- /.gitbook/assets/composeAction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/composeAction.png -------------------------------------------------------------------------------- /.gitbook/assets/compose_attachments_context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/compose_attachments_context.png -------------------------------------------------------------------------------- /.gitbook/assets/composeaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/composeaction.png -------------------------------------------------------------------------------- /.gitbook/assets/dubug-addons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/dubug-addons.png -------------------------------------------------------------------------------- /.gitbook/assets/editable (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/editable (1).png -------------------------------------------------------------------------------- /.gitbook/assets/editable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/editable.png -------------------------------------------------------------------------------- /.gitbook/assets/failure-summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/failure-summary.png -------------------------------------------------------------------------------- /.gitbook/assets/folder_pane.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/folder_pane.PNG -------------------------------------------------------------------------------- /.gitbook/assets/folder_pane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/folder_pane.png -------------------------------------------------------------------------------- /.gitbook/assets/guide001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/guide001.png -------------------------------------------------------------------------------- /.gitbook/assets/guide002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/guide002.png -------------------------------------------------------------------------------- /.gitbook/assets/guide003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/guide003.png -------------------------------------------------------------------------------- /.gitbook/assets/guide004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/guide004.png -------------------------------------------------------------------------------- /.gitbook/assets/guide005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/guide005.png -------------------------------------------------------------------------------- /.gitbook/assets/guide006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/guide006.png -------------------------------------------------------------------------------- /.gitbook/assets/guide007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/guide007.png -------------------------------------------------------------------------------- /.gitbook/assets/guide008 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/guide008 (1).png -------------------------------------------------------------------------------- /.gitbook/assets/guide008 (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/guide008 (2).png -------------------------------------------------------------------------------- /.gitbook/assets/guide008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/guide008.png -------------------------------------------------------------------------------- /.gitbook/assets/guide009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/guide009.png -------------------------------------------------------------------------------- /.gitbook/assets/guide010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/guide010.png -------------------------------------------------------------------------------- /.gitbook/assets/guide011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/guide011.png -------------------------------------------------------------------------------- /.gitbook/assets/hello-word-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/hello-word-2.png -------------------------------------------------------------------------------- /.gitbook/assets/hello-word-3-try.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/hello-word-3-try.png -------------------------------------------------------------------------------- /.gitbook/assets/hello-word-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/hello-word-3.png -------------------------------------------------------------------------------- /.gitbook/assets/hello-word-load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/hello-word-load.png -------------------------------------------------------------------------------- /.gitbook/assets/hello-word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/hello-word.png -------------------------------------------------------------------------------- /.gitbook/assets/hello-world-4 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/hello-world-4 (1).png -------------------------------------------------------------------------------- /.gitbook/assets/hello-world-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/hello-world-4.png -------------------------------------------------------------------------------- /.gitbook/assets/hello-world-addon-loaded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/hello-world-addon-loaded.png -------------------------------------------------------------------------------- /.gitbook/assets/hello-world-addon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/hello-world-addon.png -------------------------------------------------------------------------------- /.gitbook/assets/hello-world-javascript-alert (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/hello-world-javascript-alert (1).png -------------------------------------------------------------------------------- /.gitbook/assets/hello-world-javascript-alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/hello-world-javascript-alert.png -------------------------------------------------------------------------------- /.gitbook/assets/hello_world_element.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/hello_world_element.png -------------------------------------------------------------------------------- /.gitbook/assets/hello_world_menu_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/hello_world_menu_item.png -------------------------------------------------------------------------------- /.gitbook/assets/hello_world_pop_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/hello_world_pop_up.png -------------------------------------------------------------------------------- /.gitbook/assets/image (1) (1) (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/image (1) (1) (1).png -------------------------------------------------------------------------------- /.gitbook/assets/image (1) (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/image (1) (1).png -------------------------------------------------------------------------------- /.gitbook/assets/image (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/image (1).png -------------------------------------------------------------------------------- /.gitbook/assets/image (2) (1) (1) (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/image (2) (1) (1) (1).png -------------------------------------------------------------------------------- /.gitbook/assets/image (2) (1) (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/image (2) (1) (1).png -------------------------------------------------------------------------------- /.gitbook/assets/image (2) (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/image (2) (1).png -------------------------------------------------------------------------------- /.gitbook/assets/image (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/image (2).png -------------------------------------------------------------------------------- /.gitbook/assets/image (3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/image (3).png -------------------------------------------------------------------------------- /.gitbook/assets/image (4).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/image (4).png -------------------------------------------------------------------------------- /.gitbook/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/image.png -------------------------------------------------------------------------------- /.gitbook/assets/import_export_tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/import_export_tool.png -------------------------------------------------------------------------------- /.gitbook/assets/ind2ex (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/ind2ex (1).png -------------------------------------------------------------------------------- /.gitbook/assets/ind2ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/ind2ex.png -------------------------------------------------------------------------------- /.gitbook/assets/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/index.png -------------------------------------------------------------------------------- /.gitbook/assets/internet-16px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/internet-16px.png -------------------------------------------------------------------------------- /.gitbook/assets/internet-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/internet-32px.png -------------------------------------------------------------------------------- /.gitbook/assets/internet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/internet.png -------------------------------------------------------------------------------- /.gitbook/assets/link-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/link-preview.png -------------------------------------------------------------------------------- /.gitbook/assets/link.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/link.PNG -------------------------------------------------------------------------------- /.gitbook/assets/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/link.png -------------------------------------------------------------------------------- /.gitbook/assets/load-temp-addon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/load-temp-addon.png -------------------------------------------------------------------------------- /.gitbook/assets/mda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/mda.png -------------------------------------------------------------------------------- /.gitbook/assets/message-header (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/message-header (1).png -------------------------------------------------------------------------------- /.gitbook/assets/message-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/message-header.png -------------------------------------------------------------------------------- /.gitbook/assets/message_attachments_context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/message_attachments_context.png -------------------------------------------------------------------------------- /.gitbook/assets/message_list.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/message_list.PNG -------------------------------------------------------------------------------- /.gitbook/assets/message_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/message_list.png -------------------------------------------------------------------------------- /.gitbook/assets/new_address_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/new_address_book.png -------------------------------------------------------------------------------- /.gitbook/assets/options (1).PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/options (1).PNG -------------------------------------------------------------------------------- /.gitbook/assets/options (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/options (1).png -------------------------------------------------------------------------------- /.gitbook/assets/options.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/options.PNG -------------------------------------------------------------------------------- /.gitbook/assets/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/options.png -------------------------------------------------------------------------------- /.gitbook/assets/page.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/page.PNG -------------------------------------------------------------------------------- /.gitbook/assets/page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/page.png -------------------------------------------------------------------------------- /.gitbook/assets/screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/screen1.png -------------------------------------------------------------------------------- /.gitbook/assets/screen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/screen2.png -------------------------------------------------------------------------------- /.gitbook/assets/screen3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/screen3.PNG -------------------------------------------------------------------------------- /.gitbook/assets/screen3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/screen3.png -------------------------------------------------------------------------------- /.gitbook/assets/screen4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/screen4.png -------------------------------------------------------------------------------- /.gitbook/assets/screen5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/screen5.png -------------------------------------------------------------------------------- /.gitbook/assets/screen6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/screen6.png -------------------------------------------------------------------------------- /.gitbook/assets/screen7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/screen7.png -------------------------------------------------------------------------------- /.gitbook/assets/screen8 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/screen8 (1).png -------------------------------------------------------------------------------- /.gitbook/assets/screen8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/screen8.png -------------------------------------------------------------------------------- /.gitbook/assets/screenshot-from-2019-03-23-13-04-51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/screenshot-from-2019-03-23-13-04-51.png -------------------------------------------------------------------------------- /.gitbook/assets/screenshot-from-2019-03-23-13-47-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/screenshot-from-2019-03-23-13-47-57.png -------------------------------------------------------------------------------- /.gitbook/assets/selection.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/selection.PNG -------------------------------------------------------------------------------- /.gitbook/assets/selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/selection.png -------------------------------------------------------------------------------- /.gitbook/assets/spaces_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/spaces_toolbar.png -------------------------------------------------------------------------------- /.gitbook/assets/tab.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/tab.PNG -------------------------------------------------------------------------------- /.gitbook/assets/tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/tab.png -------------------------------------------------------------------------------- /.gitbook/assets/tb-channels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/tb-channels.png -------------------------------------------------------------------------------- /.gitbook/assets/try-target (1).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/try-target (1).jpeg -------------------------------------------------------------------------------- /.gitbook/assets/try-target.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/try-target.jpeg -------------------------------------------------------------------------------- /.gitbook/assets/trybuilds (1).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/trybuilds (1).jpeg -------------------------------------------------------------------------------- /.gitbook/assets/trybuilds (2).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/trybuilds (2).jpeg -------------------------------------------------------------------------------- /.gitbook/assets/trybuilds (3).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/trybuilds (3).jpeg -------------------------------------------------------------------------------- /.gitbook/assets/trybuilds.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/trybuilds.jpeg -------------------------------------------------------------------------------- /.gitbook/assets/trytarget (1).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/trytarget (1).jpeg -------------------------------------------------------------------------------- /.gitbook/assets/trytarget.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/trytarget.jpeg -------------------------------------------------------------------------------- /.gitbook/assets/webext_diagram (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/webext_diagram (1).png -------------------------------------------------------------------------------- /.gitbook/assets/webext_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/webext_diagram.png -------------------------------------------------------------------------------- /.gitbook/assets/webextension-anatomy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/webextension-anatomy.png -------------------------------------------------------------------------------- /.gitbook/assets/which artifact build.svg (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/which artifact build.svg (1).png -------------------------------------------------------------------------------- /.gitbook/assets/which artifact build.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/which artifact build.svg.png -------------------------------------------------------------------------------- /.gitbook/assets/which-artifact-build.svg (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/which-artifact-build.svg (1).png -------------------------------------------------------------------------------- /.gitbook/assets/which-artifact-build.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/which-artifact-build.svg.png -------------------------------------------------------------------------------- /.gitbook/assets/windows-version-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/.gitbook/assets/windows-version-screen.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /add-ons/about-add-ons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/add-ons/about-add-ons.md -------------------------------------------------------------------------------- /add-ons/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/add-ons/community.md -------------------------------------------------------------------------------- /add-ons/hello-world-add-on/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/add-ons/hello-world-add-on/README.md -------------------------------------------------------------------------------- /add-ons/hello-world-add-on/using-a-background-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/add-ons/hello-world-add-on/using-a-background-page.md -------------------------------------------------------------------------------- /add-ons/hello-world-add-on/using-content-scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/add-ons/hello-world-add-on/using-content-scripts.md -------------------------------------------------------------------------------- /add-ons/hello-world-add-on/using-webextension-apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/add-ons/hello-world-add-on/using-webextension-apis.md -------------------------------------------------------------------------------- /add-ons/mailextensions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/add-ons/mailextensions/README.md -------------------------------------------------------------------------------- /add-ons/mailextensions/experiments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/add-ons/mailextensions/experiments.md -------------------------------------------------------------------------------- /add-ons/mailextensions/supported-manifest-keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/add-ons/mailextensions/supported-manifest-keys.md -------------------------------------------------------------------------------- /add-ons/mailextensions/supported-ui-elements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/add-ons/mailextensions/supported-ui-elements.md -------------------------------------------------------------------------------- /add-ons/mailextensions/supported-webextension-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/add-ons/mailextensions/supported-webextension-api.md -------------------------------------------------------------------------------- /add-ons/resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/add-ons/resources/README.md -------------------------------------------------------------------------------- /add-ons/resources/tips-and-tricks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/add-ons/resources/tips-and-tricks.md -------------------------------------------------------------------------------- /add-ons/updating/README.md: -------------------------------------------------------------------------------- 1 | # Add-on Update Guides 2 | 3 | -------------------------------------------------------------------------------- /add-ons/updating/historical-overview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/add-ons/updating/historical-overview/README.md -------------------------------------------------------------------------------- /add-ons/updating/historical-overview/bootstrapped.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/add-ons/updating/historical-overview/bootstrapped.md -------------------------------------------------------------------------------- /add-ons/updating/historical-overview/legacy-to-modern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/add-ons/updating/historical-overview/legacy-to-modern.md -------------------------------------------------------------------------------- /add-ons/updating/historical-overview/overlays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/add-ons/updating/historical-overview/overlays.md -------------------------------------------------------------------------------- /add-ons/updating/historical-overview/wrapped-to-modern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/add-ons/updating/historical-overview/wrapped-to-modern.md -------------------------------------------------------------------------------- /add-ons/updating/tb102/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/add-ons/updating/tb102/README.md -------------------------------------------------------------------------------- /add-ons/updating/tb102/adapt-to-changes-in-thunderbird-92-102.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/add-ons/updating/tb102/adapt-to-changes-in-thunderbird-92-102.md -------------------------------------------------------------------------------- /add-ons/updating/tb115/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/add-ons/updating/tb115/README.md -------------------------------------------------------------------------------- /add-ons/updating/tb115/adapt-to-changes-in-thunderbird-103-115.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/add-ons/updating/tb115/adapt-to-changes-in-thunderbird-103-115.md -------------------------------------------------------------------------------- /add-ons/updating/tb128.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/add-ons/updating/tb128.md -------------------------------------------------------------------------------- /add-ons/updating/tb68/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/add-ons/updating/tb68/README.md -------------------------------------------------------------------------------- /add-ons/updating/tb68/changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/add-ons/updating/tb68/changes.md -------------------------------------------------------------------------------- /add-ons/updating/tb78/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/add-ons/updating/tb78/README.md -------------------------------------------------------------------------------- /add-ons/updating/tb78/changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/add-ons/updating/tb78/changes.md -------------------------------------------------------------------------------- /add-ons/updating/tb91/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/add-ons/updating/tb91/README.md -------------------------------------------------------------------------------- /add-ons/updating/tb91/changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/add-ons/updating/tb91/changes.md -------------------------------------------------------------------------------- /add-ons/updating/updates-for-thunderbird-140.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/add-ons/updating/updates-for-thunderbird-140.md -------------------------------------------------------------------------------- /add-ons/web-extension-themes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/add-ons/web-extension-themes.md -------------------------------------------------------------------------------- /add-ons/whats-new/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/add-ons/whats-new/README.md -------------------------------------------------------------------------------- /add-ons/whats-new/manifest-v3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/add-ons/whats-new/manifest-v3.md -------------------------------------------------------------------------------- /assets/hello_world_pop_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/assets/hello_world_pop_up.png -------------------------------------------------------------------------------- /planning/android-roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/planning/android-roadmap.md -------------------------------------------------------------------------------- /planning/ios-roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/planning/ios-roadmap.md -------------------------------------------------------------------------------- /planning/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/planning/roadmap.md -------------------------------------------------------------------------------- /planning/standards-status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/planning/standards-status.md -------------------------------------------------------------------------------- /releases/cadence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/releases/cadence.md -------------------------------------------------------------------------------- /releases/channels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/releases/channels.md -------------------------------------------------------------------------------- /releases/feature-flags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/releases/feature-flags.md -------------------------------------------------------------------------------- /releases/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/releases/release-notes.md -------------------------------------------------------------------------------- /releases/tracking-fixes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/releases/tracking-fixes.md -------------------------------------------------------------------------------- /releases/uplifting-fixes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/releases/uplifting-fixes.md -------------------------------------------------------------------------------- /thunderbird-development/bug-triaging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/bug-triaging/README.md -------------------------------------------------------------------------------- /thunderbird-development/bug-triaging/bug-status-classification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/bug-triaging/bug-status-classification.md -------------------------------------------------------------------------------- /thunderbird-development/bug-triaging/bug-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/bug-triaging/bug-types.md -------------------------------------------------------------------------------- /thunderbird-development/bug-triaging/garbage-collection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/bug-triaging/garbage-collection.md -------------------------------------------------------------------------------- /thunderbird-development/bug-triaging/narrow-the-scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/bug-triaging/narrow-the-scope.md -------------------------------------------------------------------------------- /thunderbird-development/building-thunderbird/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/building-thunderbird/README.md -------------------------------------------------------------------------------- /thunderbird-development/building-thunderbird/artifact-builds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/building-thunderbird/artifact-builds.md -------------------------------------------------------------------------------- /thunderbird-development/building-thunderbird/linux-build-prerequisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/building-thunderbird/linux-build-prerequisites.md -------------------------------------------------------------------------------- /thunderbird-development/building-thunderbird/macos-build-prerequisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/building-thunderbird/macos-build-prerequisites.md -------------------------------------------------------------------------------- /thunderbird-development/building-thunderbird/windows-build-prerequisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/building-thunderbird/windows-build-prerequisites.md -------------------------------------------------------------------------------- /thunderbird-development/codebase-overview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/codebase-overview/README.md -------------------------------------------------------------------------------- /thunderbird-development/codebase-overview/account-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/codebase-overview/account-configuration.md -------------------------------------------------------------------------------- /thunderbird-development/codebase-overview/address-book.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/codebase-overview/address-book.md -------------------------------------------------------------------------------- /thunderbird-development/codebase-overview/chat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/codebase-overview/chat/README.md -------------------------------------------------------------------------------- /thunderbird-development/codebase-overview/chat/chat-core-protocols.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/codebase-overview/chat/chat-core-protocols.md -------------------------------------------------------------------------------- /thunderbird-development/codebase-overview/chat/contacts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/codebase-overview/chat/contacts.md -------------------------------------------------------------------------------- /thunderbird-development/codebase-overview/chat/keyboard-shortcuts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/codebase-overview/chat/keyboard-shortcuts.md -------------------------------------------------------------------------------- /thunderbird-development/codebase-overview/chat/message-styles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/codebase-overview/chat/message-styles.md -------------------------------------------------------------------------------- /thunderbird-development/codebase-overview/chat/notifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/codebase-overview/chat/notifications.md -------------------------------------------------------------------------------- /thunderbird-development/codebase-overview/mail-front-end.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/codebase-overview/mail-front-end.md -------------------------------------------------------------------------------- /thunderbird-development/fixing-a-bug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/fixing-a-bug/README.md -------------------------------------------------------------------------------- /thunderbird-development/fixing-a-bug/bug-triaging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/fixing-a-bug/bug-triaging/README.md -------------------------------------------------------------------------------- /thunderbird-development/fixing-a-bug/bug-triaging/bug-status-classification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/fixing-a-bug/bug-triaging/bug-status-classification.md -------------------------------------------------------------------------------- /thunderbird-development/fixing-a-bug/bug-triaging/bug-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/fixing-a-bug/bug-triaging/bug-types.md -------------------------------------------------------------------------------- /thunderbird-development/fixing-a-bug/bug-triaging/garbage-collection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/fixing-a-bug/bug-triaging/garbage-collection.md -------------------------------------------------------------------------------- /thunderbird-development/fixing-a-bug/bug-triaging/narrow-the-scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/fixing-a-bug/bug-triaging/narrow-the-scope.md -------------------------------------------------------------------------------- /thunderbird-development/fixing-a-bug/care-and-feeding-of-the-tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/fixing-a-bug/care-and-feeding-of-the-tree.md -------------------------------------------------------------------------------- /thunderbird-development/fixing-a-bug/landing-a-patch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/fixing-a-bug/landing-a-patch.md -------------------------------------------------------------------------------- /thunderbird-development/fixing-a-bug/lint-and-format-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/fixing-a-bug/lint-and-format-code.md -------------------------------------------------------------------------------- /thunderbird-development/fixing-a-bug/try-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/fixing-a-bug/try-server.md -------------------------------------------------------------------------------- /thunderbird-development/fixing-a-bug/using-eslint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/fixing-a-bug/using-eslint.md -------------------------------------------------------------------------------- /thunderbird-development/fixing-a-bug/using-mercurial-bookmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/fixing-a-bug/using-mercurial-bookmarks.md -------------------------------------------------------------------------------- /thunderbird-development/fixing-a-bug/using-mercurial-queues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/fixing-a-bug/using-mercurial-queues.md -------------------------------------------------------------------------------- /thunderbird-development/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/getting-started.md -------------------------------------------------------------------------------- /thunderbird-development/hello-world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/hello-world.md -------------------------------------------------------------------------------- /thunderbird-development/setting-up-a-build-environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/setting-up-a-build-environment.md -------------------------------------------------------------------------------- /thunderbird-development/testing/README.md: -------------------------------------------------------------------------------- 1 | # Testing 2 | 3 | -------------------------------------------------------------------------------- /thunderbird-development/testing/adding-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/testing/adding-tests.md -------------------------------------------------------------------------------- /thunderbird-development/testing/running-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/testing/running-tests.md -------------------------------------------------------------------------------- /thunderbird-development/testing/writing-mochitest-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/testing/writing-mochitest-tests.md -------------------------------------------------------------------------------- /thunderbird-development/tutorials-and-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/tutorials-and-examples/README.md -------------------------------------------------------------------------------- /thunderbird-development/tutorials-and-examples/hello-world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/tutorials-and-examples/hello-world.md -------------------------------------------------------------------------------- /thunderbird-development/tutorials-and-examples/thunderbird-live-development-videos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbird/developer-docs/HEAD/thunderbird-development/tutorials-and-examples/thunderbird-live-development-videos.md --------------------------------------------------------------------------------