bing_rel_next_prev

On *.bing.com add a rel="prev" and rel="next" attribute to the <a> going to Prev and Next pages, so it works with Saka keys and others.

질문, 리뷰하거나, 이 스크립트를 신고하세요.
개발자
grepsuzette
일일 설치수
0
총 설치수
11
평점
0 0 0
버전
20191004_0007
생성
2019-10-04
갱신
2022-04-02
라이선스
없음
동작 사이트

Bing.com, as of 2019 (still the case in 2022), does not yet integrate rel="next" and rel="prev" W3C standard in its <a> tags for previous page and next page. See https://www.w3.org/TR/html5/links.html#sequential-link-types

This prevents it working with some plugins exploiting this standard (such as Saka Keys and similar, e.g. mapping a key to go to prev and next page).

Thus this script does this on *.bing.com's DOM:

document.body.querySelectorAll('a[href][title="Prev page"]').rel = "prev";
document.body.querySelectorAll('a[href][title="Next page"]').rel = "next";