Compare Chrome extensions: HTTPS Everywhere vs React Developer Tools

Stats HTTPS Everywhere HTTPS Everywhere React Developer Tools React Developer Tools
User count 1,656,162+ 4,000,000+
Average rating 4.46 3.98
Rating count 4,278 1,511
Last updated 2022-09-30 2024-04-18
Size 1.77M 2.52M
Version 2022.5.24 5.1.0 (4/15/2024)
Short description
Encrypt the Web! Automatically use HTTPS security on many sites. Adds React debugging tools to the Chrome Developer Tools. Created from revision b566064da on 4/15/2024.
Full summary

Note: Extension will sunset January 2023. Instructions on how to turn on HTTPS by default in Chrome here: https://eff.org/https-everywhere/set-https-default-your-browser

HTTPS Everywhere is an extension created by EFF and the Tor Project which automatically switches thousands of sites from insecure "http" to secure "https". It will protect you against many forms of surveillance and account hijacking, and some forms of censorship.

The DuckDuckGo Smarter Encryption list is publicly available under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0. International license. If you'd like to license the list for commercial use, please reach out to: https://help.duckduckgo.com/duckduckgo-help-pages/company/contact-us/

Source code and bug tracker are available at https://github.com/efforg/https-everywhere. Please do not submit bug reports in the reviews!

Changelog: https://www.eff.org/files/Changelog.txt

    ------- IMPORTANT NOTE: -------

If HTTPS Everywhere causes a site to look weird or break, you can disable it for that site using the button in the address bar in the top right of your screen. HTTPS Everywhere for Chrome is currently in beta, and a few such issues are inevitable due to bugs in websites' HTTPS support. Also watch for a "shield" button in the address bar, which means that Chrome blocked insecure portions of the page. Sometimes pages will look weird with their insecure portions removed. Clicking on the shield will let you load them, but will reduce your security and privacy.

Special thanks to Aaron Swartz, Mike Perry, Jay Weisskopf, Nick Semenkovich, Jacob Hoffman-Andrews, Yan Zhu, Vijay P., and William Budington for their work on the Chrome port.

React Developer Tools is a Chrome DevTools extension for the open-source React JavaScript library. It allows you to inspect the React component hierarchies in the Chrome Developer Tools.

You will get two new tabs in your Chrome DevTools: "⚛️ Components" and "⚛️ Profiler".

The Components tab shows you the root React components that were rendered on the page, as well as the subcomponents that they ended up rendering.

By selecting one of the components in the tree, you can inspect and edit its current props and state in the panel on the right. In the breadcrumbs you can inspect the selected component, the component that created it, the component that created that one, and so on.

If you inspect a React element on the page using the regular Elements tab, then switch over to the React tab, that element will be automatically selected in the React tree.

The Profiler tab allows you to record performance information.

This extension requires permissions to access the page's React tree, but it does not transmit any data remotely. It is fully open source, and you can find its source code at https://github.com/facebook/react/tree/master/packages/react-devtools-extensions.