Category Archives: 工具

在 chrome 下快速查看完整的下载 url

Chrome 浏览器下面的下载很不好用,管理功能极少,连最基本的复制下载的 url 都不可以,以前我都是打开下载窗口,里面有 url 可以复制,但超过一定长度的 url 会变为短地址。以前我都是点到 url 然后审查元素,浏览 DOM 然后从里面复制 url ,但这样很不方便,每次操作都费时费力,就去 google ,结果发现有人写了一个脚本可以方便的做到我想要的效果,代码如下: (function (window, document, Array) { // change all the text to <a> tags Array.prototype.slice.call(document.querySelectorAll(‘div.url’)).forEach(function (el) { var a = document.createElement(‘a’); a.innerHTML = a.href = … Continue reading

Posted in 工具, 生活 | Tagged , | Leave a comment