MachX

Results 40 comments of MachX

If you use webpack or browserify, the easiest way to keep line numbers and also add prefix is to use `string-replace-loader` to add prefix. An example for webpack that adds...

同样问题,手机没有绑定,自然也没有登陆保护,网页可以登陆

![Screenshot from 2019-11-08 10-20-18](https://user-images.githubusercontent.com/28209092/68487629-6c20a600-0211-11ea-8188-f81fdcb92084.png) Firefox+Violentmonkey 用`about:debugging`看了一下,`GM.setValue`的数据是直接存在了`Extenstion Storage`里,注意看`val:1`和`val:3`。这和webextension的[browser.storage.local.set](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/storage/StorageArea/set)存储数据的位置是一样的。所以个人猜测暴力猴本身就已经把data读到了内存里,`GM.getValue`只是从内存调取数据? 另外才发现原来`GM.setValue`本身就支持存array, https://violentmonkey.github.io/api/gm/#gm_setvalue > The value to be stored, which must be JSON serializable (string, number, boolean, null, or an array/object consisting of these...

@yfdyh000 发现了个project https://github.com/tophf/autopagerize 虽然是个extension,但是有些很好的特点 > - the URL matching regexps are cached upon each run of the background page so subsequent checks during the run are almost 100 times faster...

Add ` unset PROMPT_DIRTRIM` in your `~/.bashrc` after `source $OSH/oh-my-bash.sh `

No need for an additional entrypoint. The following works for me ```yaml version: "3" services: telegram-transmission-bot: container_name: telegram-transmission-bot restart: on-failure image: kevinhalpin/transmission-telegram:latest environment: - TELEGRAM_TRANSMISSION_BOT=foobar - TELEGRAM_USERNAME=foobar - TRANSMISSION_URL=http://localhost:9092/transmission/rpc -...