Inspect and view changes in Teaful DevTools source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"version": "0.1.0",
"author": "Aral Roca",
"name": "Teaful DevTools",
"short_name": "Teaful DevTools",
"description": "Teaful DevTools is for debugging application's state changes using Teaful as React state management",
"homepage_url": "https://github.com/teafuljs/teaful-devtools",
"manifest_version": 2,
"icons": {
"16": "img/logo_16x16.png",
"48": "img/logo_48x48.png",
"128": "img/logo_128x128.png"
},
"devtools_page": "devtools.html",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"exclude_globs": [
"https://www.google*"
],
"js": [
"content_script.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"permissions": [
"http://*/*",
"https://*/*"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}