Bilibili搜索页面筛选增强脚本,增加今年、本月、当日发布筛选,可配合B站原有的综合排序、最多点击、最多弹幕、最多收藏使用。
< Feedback on Bilibili筛选增强
稍微改一下 createFilterButton() 就能完美融入B站风格,很难理解为什么使用目前的设计风格……
createFilterButton()
function createFilterButton(text, fType, callback) { const button = document.createElement('button') button.textContent = text button.className = 'bil-filter-btn vui-button mr_sm vui_button--tab' button.style.borderRadius = '6px' button.onclick = function() { nowTypeIndex = fType btnList.forEach(btn => btn.classList.remove('vui_button--active')) button.classList.add('vui_button--active') mFilter(callback) } return button }
Sign in to post a reply.
稍微改一下
createFilterButton()
就能完美融入B站风格,很难理解为什么使用目前的设计风格……