├── .github ├── FUNDING.yml └── workflows │ └── release.yaml ├── .gitignore ├── .jshintrc ├── LICENSE ├── README.md ├── background.html ├── background.js ├── images ├── language.svg ├── mail-identities.svg ├── paypal-mark-color.svg ├── rwh-features.png └── rwh.svg ├── manifest.json ├── modules ├── accounts.mjs ├── compose.mjs ├── headers-i18n.mjs ├── logger.mjs ├── menus.mjs ├── notifications.mjs ├── settings.mjs ├── tabs.mjs └── utils.mjs └── options ├── options.css ├── options.html └── options.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeevatkm/ReplyWithHeader-Thunderbird/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeevatkm/ReplyWithHeader-Thunderbird/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeevatkm/ReplyWithHeader-Thunderbird/HEAD/.jshintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeevatkm/ReplyWithHeader-Thunderbird/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeevatkm/ReplyWithHeader-Thunderbird/HEAD/README.md -------------------------------------------------------------------------------- /background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeevatkm/ReplyWithHeader-Thunderbird/HEAD/background.html -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeevatkm/ReplyWithHeader-Thunderbird/HEAD/background.js -------------------------------------------------------------------------------- /images/language.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeevatkm/ReplyWithHeader-Thunderbird/HEAD/images/language.svg -------------------------------------------------------------------------------- /images/mail-identities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeevatkm/ReplyWithHeader-Thunderbird/HEAD/images/mail-identities.svg -------------------------------------------------------------------------------- /images/paypal-mark-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeevatkm/ReplyWithHeader-Thunderbird/HEAD/images/paypal-mark-color.svg -------------------------------------------------------------------------------- /images/rwh-features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeevatkm/ReplyWithHeader-Thunderbird/HEAD/images/rwh-features.png -------------------------------------------------------------------------------- /images/rwh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeevatkm/ReplyWithHeader-Thunderbird/HEAD/images/rwh.svg -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeevatkm/ReplyWithHeader-Thunderbird/HEAD/manifest.json -------------------------------------------------------------------------------- /modules/accounts.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeevatkm/ReplyWithHeader-Thunderbird/HEAD/modules/accounts.mjs -------------------------------------------------------------------------------- /modules/compose.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeevatkm/ReplyWithHeader-Thunderbird/HEAD/modules/compose.mjs -------------------------------------------------------------------------------- /modules/headers-i18n.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeevatkm/ReplyWithHeader-Thunderbird/HEAD/modules/headers-i18n.mjs -------------------------------------------------------------------------------- /modules/logger.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeevatkm/ReplyWithHeader-Thunderbird/HEAD/modules/logger.mjs -------------------------------------------------------------------------------- /modules/menus.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeevatkm/ReplyWithHeader-Thunderbird/HEAD/modules/menus.mjs -------------------------------------------------------------------------------- /modules/notifications.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeevatkm/ReplyWithHeader-Thunderbird/HEAD/modules/notifications.mjs -------------------------------------------------------------------------------- /modules/settings.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeevatkm/ReplyWithHeader-Thunderbird/HEAD/modules/settings.mjs -------------------------------------------------------------------------------- /modules/tabs.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeevatkm/ReplyWithHeader-Thunderbird/HEAD/modules/tabs.mjs -------------------------------------------------------------------------------- /modules/utils.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeevatkm/ReplyWithHeader-Thunderbird/HEAD/modules/utils.mjs -------------------------------------------------------------------------------- /options/options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeevatkm/ReplyWithHeader-Thunderbird/HEAD/options/options.css -------------------------------------------------------------------------------- /options/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeevatkm/ReplyWithHeader-Thunderbird/HEAD/options/options.html -------------------------------------------------------------------------------- /options/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeevatkm/ReplyWithHeader-Thunderbird/HEAD/options/options.js --------------------------------------------------------------------------------