How to Force GitHub Actions to Light Theme Using Tampermonkey

This page summarizes the projects mentioned and recommended in the original post on dev.to

Scout Monitoring - Performance metrics and, now, Logs Management Monitoring with Scout Monitoring
Get early access to Scout Monitoring's NEW Ruby logging feature [beta] by signing up now. Start for free and enable logs to get better insights into your Rails apps.
www.scoutapm.com
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
  • Puts Debuggerer

    Ruby library for improved puts debugging, automatically displaying bonus useful information such as source line number and source code.

    // ==UserScript== // @name Remove data-dark-theme attributes // @namespace http://tampermonkey.net/ // @version 2024-06-23 // @description Remove data-dark-theme attributes from GitHub Actions console // @author masayoshi haruta // @match https://github.com/*/*/actions/runs/* // @icon https://www.google.com/s2/favicons?sz=64&domain=github.com // @grant none // ==/UserScript== (function() { 'use strict'; // Function to remove data-dark-theme attribute from all elements function removeDataDarkThemeAttributes() { // Get all elements with the data-dark-theme attribute var elements = document.querySelectorAll('[data-dark-theme]'); // Loop through the elements and remove the attribute elements.forEach(function(element) { element.removeAttribute('data-dark-theme'); }); } // Run the function once the DOM is fully loaded document.addEventListener('DOMContentLoaded', removeDataDarkThemeAttributes); removeDataDarkThemeAttributes() })();

  • Scout Monitoring

    Performance metrics and, now, Logs Management Monitoring with Scout Monitoring. Get early access to Scout Monitoring's NEW Ruby logging feature [beta] by signing up now. Start for free and enable logs to get better insights into your Rails apps.

    Scout Monitoring logo
  • appearance

    Even after selecting the Light theme in Theme preferences, this issue wasn't resolved. https://github.com/settings/appearance

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • How to Get Free Unlimited Bandwidth and Storage Using jsDelivr and GitHub

    1 project | dev.to | 2 Jul 2024
  • Did You Know You Can Use GitHub to Host Your Site for Free?

    1 project | dev.to | 2 Jul 2024
  • CodeConductor.AI vs. Microsoft AutoDev: Which Will Transform Your Coding Career?

    1 project | dev.to | 26 Jun 2024
  • Utilizando o Git e o GitHub para anotar seus estudos

    2 projects | dev.to | 25 Jun 2024
  • Contribute to an Open-Source JavaScript Project: Join Now!

    2 projects | dev.to | 23 Jun 2024

Did you konow that Ruby is
the 13th most popular programming language
based on number of metions?