jingyu9575

Results 121 comments of jingyu9575

Lately I've been using `cson2json ${process.platform === 'win32' ? 'cson2json/../' : ''}${source_file}` to workaround that `indexOf`.

测试发现去掉下面3个 set*SysColor 可以解决这个问题: https://github.com/EasyIME/libIME2/blob/8ad3c9b433d930ce5614c483461dfa78cedb5efd/src/ImeModule.cpp#L72-L75

Firefox feature status: [Bug 1368559](https://bugzilla.mozilla.org/show_bug.cgi?id=1368559), NEW Unassigned P2.

I see different results here. On my Firefox 63.0.1 / Windows 10, I modified the about:config entry to 100, and then force to set the extension option to 100 by...

@M-Reimer I opened options.html and used the developer tools to increase the `max` attribute of this element: ```HTML ``` so the UI limitation was removed and I could put 100...

I am not sure if this is possible with WebExtensions APIs. Maybe [this API](https://developer.mozilla.org/en-US/Add-ons/WebExtensions/API/webRequest/StreamFilter/suspend) can be used to delay the data flow and control the speed. I need to do...

Unfortunately, this API does not show the expected behavior in my test. Suspending a download request does not stop the network transfer, but piles the data up instead. For example,...

I cannot found such feature request either. The API I mentioned above is part of StreamFilter APIs proposed by NoScript's developer, but I cannot find out whether it is intended...

@xerta555 The browser engine is still Gecko. New Quantum parts are developed and merged incrementally.

目前只能从开发者工具操作了,在 about:debugging#/runtime/this-firefox 中调试这个扩展,控制台中运行: ```js JSON.stringify(await browser.storage.local.get()) ``` 以显示所有的设置(格式如`"{...}"`),重装后用: ``` browser.storage.local.set(JSON.parse("{...}")) ``` 导入。