├── .github └── issue_template.md ├── .gitignore ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── _locales ├── de │ └── messages.json └── en-US │ └── messages.json ├── background.js ├── content └── skin │ └── sabredav32.png ├── goodbye ├── fonts │ ├── Inter-Regular.ttf │ └── ZillaSlab-Bold.ttf ├── sunset.css ├── sunset.html ├── sunset.js └── sunset.svg └── manifest.json /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobisoft/DAV-4-TbSync/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.xpi 2 | -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobisoft/DAV-4-TbSync/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobisoft/DAV-4-TbSync/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobisoft/DAV-4-TbSync/HEAD/README.md -------------------------------------------------------------------------------- /_locales/de/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobisoft/DAV-4-TbSync/HEAD/_locales/de/messages.json -------------------------------------------------------------------------------- /_locales/en-US/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobisoft/DAV-4-TbSync/HEAD/_locales/en-US/messages.json -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- 1 | browser.tabs.create({ url: "/goodbye/sunset.html" }); -------------------------------------------------------------------------------- /content/skin/sabredav32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobisoft/DAV-4-TbSync/HEAD/content/skin/sabredav32.png -------------------------------------------------------------------------------- /goodbye/fonts/Inter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobisoft/DAV-4-TbSync/HEAD/goodbye/fonts/Inter-Regular.ttf -------------------------------------------------------------------------------- /goodbye/fonts/ZillaSlab-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobisoft/DAV-4-TbSync/HEAD/goodbye/fonts/ZillaSlab-Bold.ttf -------------------------------------------------------------------------------- /goodbye/sunset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobisoft/DAV-4-TbSync/HEAD/goodbye/sunset.css -------------------------------------------------------------------------------- /goodbye/sunset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobisoft/DAV-4-TbSync/HEAD/goodbye/sunset.html -------------------------------------------------------------------------------- /goodbye/sunset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobisoft/DAV-4-TbSync/HEAD/goodbye/sunset.js -------------------------------------------------------------------------------- /goodbye/sunset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobisoft/DAV-4-TbSync/HEAD/goodbye/sunset.svg -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jobisoft/DAV-4-TbSync/HEAD/manifest.json --------------------------------------------------------------------------------