Recoilize

A Chrome extension that helps debug Recoil applications by memorizing the state of components with every render.

Τι είναι το Recoilize;

Το Recoilize είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Team Recoilize, και η κύρια λειτουργία του είναι "A Chrome extension that helps debug Recoil applications by memorizing the state of components with every render.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Recoilize

Λήψη αρχείων επέκτασης Recoilize σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Recoilize is a Chrome extension developer tool that helps users debug Recoil applications by cataloging an app’s state with every render.

Recoilize helps developers log state change, time travel to previous states, and visualize the components in their recoil-based applications.

v3.2.1
Manifest 3
Google is transitioning Chrome Extensions to Manifest v3. Soon, Manifest v2 will be phased out, and only extensions using Manifest v3 will be accepted and listed in the Chrome store. Because of this, one of the primary focuses for Recoilize 3.2 was to update the Chrome Extension to Manifest v3. With this update, users will still be able to utilize this amazing tool, as it has now been updated and complies with Manifest v3 requirements.


React 17 and 18 Compatibility
Recoilize is now compatible with React 17 and 18.


Support for Recoil 0.7.7
Recoilize now supports the most recent update to the Recoil library and is backwards compatible with older versions of Recoil.


Under the Hood
Deprecated dependencies have been updated
The version of React used to build the Recoilize Chrome Extension has been updated to v17
Increased testing coverage
Cleaner codebase for improved readability

v3.0.0 - updates
Snapshot Comparison: 
You can save a series of state snapshots and use it to analyze changes in component render performance between the current and previous series of snapshots.

Additional Features:
- Time Travel Slider
- The Component Tree and Atom Network are now customizable

v.2.0.0 - updates

v.1.0.0 - updates

Recoil 0.1.2 support and backwards compatibility.

Snapshots 
Implemented the Previous and Forward clear buttons to allow the user to clear snapshots either before or after the currently selected snapshot.

Component Graph
Visibility button was removed and related functionality and data was incorporated into a new dropdown menu and mouse-hover over atoms and selectors.

Improved the hover by displaying the information in more readable format.

The atom legend has been made clickable to display a dropdown list of atoms or selectors. Each atom or selector in the list has also been made clickable to highlight the selected component in the graph.

Atom Network
The atom legend also has been made clickable to show a dropdown list, and each atom or selector is clickable.  When clicked, it will only display the related graph nodes.

Removed the animation in the ranked graph to improve the readability and make it easier to compare changes.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Recoilize Recoilize
ID jhfmmdhbinleghabnblahfjfalfgidik
Επίσημο URL https://chromewebstore.google.com/detail/recoilize/jhfmmdhbinleghabnblahfjfalfgidik
Περιγραφή A Chrome extension that helps debug Recoil applications by memorizing the state of components with every render.
Μέγεθος Αρχείου 11.42 MB
Αριθμός Εγκαταστάσεων 2,133
Τρέχουσα Έκδοση 3.2.1
Τελευταία Ενημέρωση 2023-05-19
Ημερομηνία Δημοσίευσης 2020-07-25
Αξιολόγηση 3.91/5 Συνολικά 11 Αξιολογήσεις
Προγραμματιστής Team Recoilize
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.recoilize.io/
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/open-source-labs/Recoilize
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Recoilize",
    "version": "3.2.1",
    "devtools_page": "devtools.html",
    "description": "A Chrome extension that helps debug Recoil applications by memorizing the state of components with every render.",
    "manifest_version": 3,
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
    },
    "icons": {
        "16": "icons\/Recoilize-v2-16.png",
        "32": "icons\/Recoilize-v2-32.png",
        "48": "icons\/Recoilize-v2-48.png",
        "128": "icons\/Recoilize-v2-128.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "bundles\/service_worker.bundle.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "bundles\/content.bundle.js"
            ]
        }
    ]
}