File tree Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1313
1414- ** _ Recently updated from React ~~ 16~~ to 17 and Webpack ~~ 4~~ to 5!_ **
1515- ** _ Recently added [ TypeScript] ( https://www.typescriptlang.org/ ) Support!_ **
16+ - ** _ Recently added [ devtools] ( https://developer.chrome.com/docs/extensions/mv3/devtools/ ) Support! Thanks [ GeekaholicLin] ( https://github.com/lxieyang/chrome-extension-boilerplate-react/issues/17 ) !_ **
1617
1718## Features
1819
Original file line number Diff line number Diff line change 1- chrome . devtools . panels . create ( 'Dev Tools' , 'icon-34.png' , 'panel.html' ) ;
1+ chrome . devtools . panels . create (
2+ 'Dev Tools from chrome-extension-boilerplate-react' ,
3+ 'icon-34.png' ,
4+ 'panel.html'
5+ ) ;
Original file line number Diff line number Diff line change 11import React from 'react' ;
2-
32import './Panel.css' ;
43
5- const Panel = ( ) : JSX . Element => {
4+ const Panel : React . FC = ( ) => {
65 return (
76 < div className = "container" >
87 < h1 > Dev Tools Panel</ h1 >
Original file line number Diff line number Diff line change 22< html lang ="en ">
33 < head >
44 < meta charset ="UTF-8 " />
5- < title > Panel</ title >
5+ < title > Dev Tools Panel</ title >
66 </ head >
77
88 < body >
You can’t perform that action at this time.
0 commit comments