GithubHelp home page GithubHelp logo

leworoe / thunderbird-outlook-appointment Goto Github PK

View Code? Open in Web Editor NEW
13.0 1.0 3.0 28 KB

Get the hidden appointment from an email from outlook/teams as a .ics-file

Home Page: https://addons.thunderbird.net/de/thunderbird/addon/outlook-teams-appointments/

License: MIT License

JavaScript 100.00%
thunderbird thunderbird-addon thunderbird-extension ics teams outlook

thunderbird-outlook-appointment's Introduction

thunderbird-outlook-appointment's People

Contributors

igorakkerman avatar jlanza avatar leworoe avatar peterfab9845 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

thunderbird-outlook-appointment's Issues

Don't works anymore

I've used this extension for many time, but in the latest two months seems not working anymore.
I'm using the last version of the extension at the moment (v1.2) with the latest Thunderbird vesion (v115.7.0).

Any suggestion?

Request to remove invalid characters when decoding base64

Please consider removing invalid characters when decoding the base64-decoded invite.

An invite that I received in Thunderbird and saved via the Outlook/Teams Appointment plugin resulted in a .ics file that could not be imported to Google calendar. Running base64 directly on the base64-encoded invite block from the message yielded the same result. Running base64 -i on the encoded invite block yielded an importable invite.

Thanks for a great Thunderbird extension!

Crashes, when ics-string isn't base64 encoded

I found this solution:

use try/catch

function base64ToText(base64String) {

try { 

 const binaryString = atob(base64String);
  const codePoints = Array(binaryString.length);
  for (let index = 0; index < binaryString.length; index++)
    codePoints[index] = binaryString.codePointAt(index);
  const uint8CodePoints = Uint8Array.from(codePoints);
  return new TextDecoder().decode(uint8CodePoints);

catch(e) {
  return base64String;
}
}

Get informations without download the ics file

Hello and thanks for trying to solve the issue of teams and outlook appointments.. really a pain in the a**

Is it possible (i really don't know how it works) to have the appointments informations without download the .ics file (and then import it in a calendar application) ?

Thank you !

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.