So my university have this activity calender in their students portal but it is quite messy, I find this in the page
<script>
    $(function () {
        /* initialize the calendar
         -----------------------------------------------------------------*/
        var JsonData = [{"Semester":"Fall 2020","title":"CS602: Assignment# 1","start":"2020,11,27","end":"2020,12,05","backgroundColor":"linea     ...
        
        $('#calendar').fullCalendar({
            header: {
                left: 'prev,next today',
                center: 'title',
                right: 'month,agendaWeek,agendaDay'
            },
            buttonText: {
                today: 'today',
                month: 'month',
                week: 'week',
                day: 'day'
            },
              
            events: JsonData,
            editable: false,
            droppable: false 
        });
    });
</script>
Is there a way to get that JSON in my chrome extension so I can do something with it there? Thanks in advance!
