Time travel debugger for useReducer hook
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "React Rewind",
"short_name": "React Rewind",
"version": "0.0.0.1",
"description": "Time travel debugger for useReducer hook",
"manifest_version": 2,
"page_action": {
"default_icon": {
"16": "icons/icon_16.png",
"32": "icons/icon_32.png",
"48": "icons/icon_48.png",
"128": "icons/icon_128.png"
},
"default_popup": "page_action.html"
},
"icons": {
"16": "icons/icon_16.png",
"32": "icons/icon_32.png",
"48": "icons/icon_48.png",
"128": "icons/icon_128.png"
},
"background": {
"scripts": [
"devtools_bundle/bg_bundle.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"scripts/inject_script_tags.js"
],
"run_at": "document_start"
}
],
"permissions": [
"<all_urls>",
"tabs",
"storage",
"webRequest",
"webRequestBlocking"
],
"web_accessible_resources": [
"scripts/deepclone_bundle.js"
],
"devtools_page": "devtools.html"
}