Skip to content

Instantly share code, notes, and snippets.

@caiofcm
Last active September 2, 2023 19:16
Show Gist options
  • Save caiofcm/2920c270d546016c6d23c33bf678620e to your computer and use it in GitHub Desktop.
Save caiofcm/2920c270d546016c6d23c33bf678620e to your computer and use it in GitHub Desktop.
Change color of google flight Price graph (no tapermonkey or similars)

Change color of google flight Price graphs to highlight certain day of the week for easier lookup

  1. Make the search regularly and open the Price graph
  2. Open the console and execute:

d3.select("g[series-id='price graph']").selectAll('path').each(function (d) {var isFrid = new Date(d.domain).getDay() == 5; if (isFrid) d3.select(this).style('fill', 'black')})

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment