Google検索の結果にFacebookのシェア数を表示するブックマークレット
by
laiso
2020-03-22 [2020/03/22 17:55:18]
同上
@@ -21,7 +21,7 @@
}
function normalizedURL(url) {
- return url.replace(/,/g, '\u00252');
+ return url.replace(/,/g, '\\u00252C');
}
function loadJSONP(url) {
/*
* @title Google検索の結果にFacebookのシェア数を表示するブックマークレット
* @description 同上
* @include https://www.google.*
* @license MIT License
*/
(function(document){
"use strict"
function queryIds(nodes, text) {
const n = nodes.pop();
const url = normalizedURL(n.href)
if (nodes.length == 0) {
const t = text + url;
const q = t.replace(/&/g, '%26').replace(/=/g, '%3D').replace(/\?/g, '%3F');
return q;
}
const t = text + url + ',';
return queryIds(nodes, t);
}
function normalizedURL(url) {
return url.replace(/,/g, '\\u00252C');
}
function loadJSONP(url) {
const script = document.createElement('SCRIPT');
script.src = url;
document.body.insertBefore(script, null);
}
function counter(info) {
const STYLE = "padding: 0 0.5em;\nmargin: 0 0.5em;\ncolor: #fff;\ntext-shadow: 0 1px 0 white;\nbackground-color: #4e69a2;\nfont-weight: bold;\ntext-decoration-line: none;";
const counter = document.createElement('A');
counter.setAttribute('style', STYLE);
counter.href = info.id;
counter.innerText = info.shares || 0;
return counter;
}
window.callback = function(data){
nodes.map((a) => {
const url = normalizedURL(a.href)
const info = data[url];
const c = counter(info);
const parentNode = a.parentNode;
parentNode.style.setProperty('overflow', 'visible');
parentNode.appendChild(c);
});
};
const nodes = Array.from(document.querySelectorAll('h3.r > a[onmousedown]'));
const ids = queryIds(nodes.slice(), "");
loadJSONP('https://graph.facebook.com/?ids='+ids+'&callback=callback');
})(document);
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。