Code Monkey home page Code Monkey logo

darkreader's Introduction

Dark Reader's mascot

Dark Reader analyzes web pages and aims to reduce the eyestrain while you browse the web.


Chrome Web Store Firefox Add-ons Edge Addons Thunderbird

Dark Reader


Dark Reader is an open-source MIT-licensed browser extension, that is designed to analyzes web pages. Based on its analysis Dark Reader will generate a dark mode based on this. Hereby Dark Reader aims to reduce the eyestrain of the user. Dark Reader is feature-rich and can be configured in many ways throughout the UI.



Questions

Most questions can be answered by reading the help page. If the help page doesn't answer your question, open up an issue and choose the template 'Question' and fill out the necessary info.

How to contribute

Read more about contributing to Dark Reader in CONTRIBUTING.md.

Building for use

You can install the extension from a file.
Install Node.js LTS. Download the source code (or check out from git).
Open terminal in the root folder and run:

  • npm install
  • npm run build

This will generate a build.zip file that is useable in a Chromium-based browser and also a build-firefox.xpi file that is useable in Firefox.

Using Dark Reader for a website

You can use Dark Reader to enable dark mode on your website!

  • Install the package from NPM (npm install darkreader)
  • or build from the source code (npm run api)
  • or include the script via a CDN such as unpkg or jsDelivr

Then you can use the following code to control Dark Reader's API

DarkReader.enable({
    brightness: 100,
    contrast: 90,
    sepia: 10
});

DarkReader.disable();

// Enable when the system color scheme is dark.
DarkReader.auto({
    brightness: 100,
    contrast: 90,
    sepia: 10
});

// Stop watching for the system color scheme.
DarkReader.auto(false);

// Get the generated CSS of Dark Reader returned as a string.
const CSS = await DarkReader.exportGeneratedCSS();

// Check if Dark Reader is enabled.
const isEnabled = DarkReader.isEnabled();

... or if you are using ES modules

import {
    enable as enableDarkMode,
    disable as disableDarkMode,
    auto as followSystemColorScheme,
    exportGeneratedCSS as collectCSS,
    isEnabled as isDarkReaderEnabled
} from 'darkreader';

enableDarkMode({
    brightness: 100,
    contrast: 90,
    sepia: 10,
});

disableDarkMode();

followSystemColorScheme();

const CSS = await collectCSS();

const isEnabled = isDarkReaderEnabled();

Site fixes

Automatically syncing the site fixes to every Dark Reader user was disabled because the GitHub team doesn't allow using GitHub as a CDN. Storing these files and making requests to other resources would be expensive and look suspicious. As such, changes are included with each new Dark Reader release.

However, this can be enabled by the following steps:

  • Click on the Dark Reader icon.
  • Click on the Dev tools button (in the bottom-right corner).
  • Click on the Preview new design button.
  • Enable the Synchronize site fixes setting, under Settings -> Manage Settings.

Contributors


Dark Reader exists thanks to all the people who have contributed to Dark Reader!



Backers


Thank you to all our generous backers! Support Dark Reader by Becoming a backer



Sponsers

Does your company use Dark Reader? Ask your manager or the marketing team if your company would be interested in supporting our project. By supporting this project, it will allow the maintainers to dedicate more time for maintenance and new features for everyone. Also, your company's logo will show on Github - who doesn't want a little extra exposure? Here's the info.

Thank you to our wonderful sponsors!

darkreader's People

Contributors

alexanderby avatar gusted avatar myshor avatar dependabot[bot] avatar sprinkledcheese avatar rakleed avatar felixonmars avatar yash-singh1 avatar fademind avatar linsui avatar alexalekseyenko avatar mertyn avatar vulcansphere avatar andrew-j-larson avatar banonotit avatar merajmasuk avatar grelo4ka avatar omarnamis avatar mukundan314 avatar bananamancj avatar ondrejsika avatar lucasfernog avatar jtraub avatar erkinalp avatar badlydrawnface avatar qtlunya avatar kurtoid avatar regnander avatar va1entin avatar opssemnik avatar

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.