Compare Chrome extensions: Save to Google Drive vs React Developer Tools

Stats Save to Google Drive Save to Google Drive React Developer Tools React Developer Tools
User count 7,000,000+ 4,000,000+
Average rating 3.93 3.99
Rating count 4,823 1,497
Last updated 2024-03-28 2024-03-09
Size 702.46K 1.57M
Version 3.0.8 5.0.2 (3/8/2024)
Short description
Save web content or screen capture directly to Google Drive. Adds React debugging tools to the Chrome Developer Tools. Created from revision 47cf347e4 on 3/8/2024.
Full summary

The Save to Google Drive Chrome extension helps you save web content or browser screenshots to your Google Drive.

  • Adds a browser action to save the current page.
  • Adds a right-click context menu to save hyperlinks and media.
  • Configurable through an options page.
  • Save a PDF of the current page via the Chrome Print menu

This extension allows you to save web content directly to Google Drive through a browser action or context menu. You can save documents, images, and HTML5 audio and video all by right clicking and selecting 'Save to Google Drive'. You can save the currently viewed page using the 'Save to Google Drive' browser action or as a PDF from the Chrome Print menu.. The directory location and format of saved HTML pages can be controlled with the extension's options page (Choice of Entire image (default), Visible image, Raw HTML, MHTML, or Google Doc). You can automatically convert Microsoft Office files or comma separated files to Google Docs format.

After your content is saved, the progress dialog allows you to open the file, rename, or view the file in the Google Drive document list. From the document list, you can organize and share your new document.

To save a file:// URLs, or to enable in incognito mode, go to chrome://extensions/ and enable the associated checkbox.

Due to security restrictions, this extension cannot capture chrome:// pages or Chrome Web Store pages.

See more

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.