Firefox Google 검색에서 한계 보이기 (+ 개량)
2672 단어 greasemonkey
사용Social bookmark counter on Google search. for Greasemonkey 느낌이 좋아서 넣었어요
나는 페이지를 열고 요소의 높이를 천천히 바꾸는 것을 좋아하지 않는다. 손잡이의 수량을 제외하고는 특별히 사용하지 않은 것 같아서 수정했다
--- 115527.user.js 2014-05-25 12:47:30.000000000 +0900
+++ 115527.user.js 2014-05-25 12:48:04.000000000 +0900
@@ -261,15 +261,15 @@
try {
// normal
- var s = link.parentNode.parentNode.getElementsByClassName('s')[0];
- var ss = link.parentNode.parentNode.parentNode.getElementsByClassName('s')[0];
+ var s = link.parentNode.parentNode.getElementsByClassName('r')[0];
+ var ss = link.parentNode.parentNode.parentNode.getElementsByClassName('r')[0];
if (s) {
var tonode = s.childNodes[0];
- tonode.parentNode.insertBefore(span, tonode.parentNode.firstChild);
+ tonode.parentNode.insertBefore(span, tonode.parentNode.firstChild.nextSibling);
}
else if (ss) {
var tonode = ss.childNodes[0];
- tonode.parentNode.insertBefore(span, tonode.parentNode.firstChild);
+ tonode.parentNode.insertBefore(span, tonode.parentNode.firstChild.nextSibling);
}
else {
link.parentNode.insertBefore(span, link.nextSibling);
@@ -576,11 +576,11 @@
}
asyncProcArray(params, hatebuCountView, fin);
- asyncProcArray(params, deliCountView, fin);
- asyncProcArray(params, facebookCountView, fin);
- asyncProcArray(params, twitterCountView, fin);
- asyncProcArray(params, stumbleuponCountView, fin);
- asyncProcArray(params, redditCountView, fin);
+ // asyncProcArray(params, deliCountView, fin);
+ // asyncProcArray(params, facebookCountView, fin);
+ // asyncProcArray(params, twitterCountView, fin);
+ // asyncProcArray(params, stumbleuponCountView, fin);
+ // asyncProcArray(params, redditCountView, fin);
// asyncProcArray(params, diggCountView, fin);
}
Reference
이 문제에 관하여(Firefox Google 검색에서 한계 보이기 (+ 개량)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/yuki_ycino/items/2d5f0fb05a444179ca0d텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)