Jhen-Jie Hong

Results 90 comments of Jhen-Jie Hong

@zalmoxisus do you can find offline installer of official? or we can use `ChromeSetup.exe` to install chrome directly by `msiexec`?

For example, you can add it to [todoapp entry](https://github.com/jhen0409/react-chrome-extension-boilerplate/blob/master/webpack/dev.config.js#L12): ``` js entry: { todoapp: [customPath, hotScript, 'bootstrap-loader', path.join(__dirname, '../chrome/extension/todoapp')], ```

You can listen [browser action](https://developer.chrome.com/extensions/browserAction) and execute script in the tab via background page. ([inject script in background page](https://github.com/jhen0409/react-chrome-extension-boilerplate/blob/master/chrome/extension/background/inject.js#L28))

@sammkj, I'm waiting for webpack@2 to leave beta, but PR is still welcome. :D Also, I am considering using [babili](https://github.com/babel/babili) instead of UglifyJS, because uglify not yet supported ES2015+ syntax.

You can try [`chrome.tabs.executeScript`](https://developer.chrome.com/extensions/tabs#method-executeScript) like [inject bundle usage](https://github.com/jhen0409/react-chrome-extension-boilerplate/blob/master/chrome/extension/background/inject.js#L12), it can also load css file.

Yeah we may migrate to [RHL v3](https://github.com/gaearon/react-hot-loader/tree/next), it also related to #39. I haven't yet to use it because [some bugs](https://github.com/gaearon/react-hot-loader/issues) blocked me on other projects, so I still not...

Agree, that option will be very useful! I did the same in https://github.com/mybigday/whisper.rn/pull/8, I think it can be built directly into the whisper.cpp. Maybe I will try to send a...

It seems the `Example Tests` CI was broken after #642.

The issue for Linux should fixed by [v0.14.0](https://github.com/jhen0409/react-native-debugger/releases/tag/v0.14.0) (bumped Electron version). I've confirmed with Ubuntu 22.04.

The react-devtools-core issue already mentioned in documentation.