sparanoid
sparanoid
+1 for this feature, It would be very useful for demonstrating purpose like @crcastle's use case. We can create a smaller selection when recording for better readability on mobile and...
The video provided in your log is private so I'm not able to debug. Did you run it locally or in Docker?
Technically you have to monitor `/community` for member-only content. I don't have enough samples and time to catch this type of videos. The current workaround is getting the video ID...
The example you provided works for me. Try to update your latest tag by `docker compose pull` or use the edge version `sparanoid/live-dl:edge`. And this project only works for YouTube...
I managed to make this working, here's my config: ```json { "deploy.reloaded": { "deployOnSaveButton": true, "packages": [{ "name": "my-server", "deployOnChange": true, "removeOnChange": true, "files": [ "**" ], "targets": ["my-server"], }...
+1 for parsing inline css, I use https://github.com/sparanoid/grunt-assets-inline to inline css and js files to reduce HTTP requests, but uncss ignores inline css.
I just create a fork of addyosmani/grunt-uncss doing the exact same thing, but does focus on processing the inline CSS only: https://github.com/sparanoid/grunt-uncss-inline This plugin do the following things: 1. Search...
@XhmikosR I just created a grunt plugin with this library to deal with inline styles, so nothing change to `uncss` code. It also has different purpose compared to `addyosmani/grunt-uncss` if...
其实解决方案也是有的,就是无论页面长短,永远让 Y 轴出现滚动条: ```css body { overflow-y: scroll; } ```
@sunchanglong 我们有类似于 Jekyll 的 front matter 的设定吗?这样 tag 比较好维护:http://jekyllrb.com/docs/frontmatter/