複数サイトのGoogle Analyticsを一括閲覧するブックマークレット
5829 ワード
https://analytics.google.com/analytics/web/
にアクセスしてから、下記のブックマークレットを実行します。
javascript:
const root_path = 'https://analytics.google.com/analytics/web/#/report-home/';
const h = window.innerHeight * 0.8;
if(!document.location.href.match(/analytics.google.com/)){
document.location.href = root_path;
}
let iframes = [
{ name: 'site_a', src: '44rw4rfsjlosk4ut4osgubsxlrutr' },
{ name: 'site_b', src: 'sw43roislfgvjslertkgvsdlguvsd'},
{ name: 'site_c', src: 'xserfswzr4wregvbdxfgvdser33gs' },
];
$('body').attr('class', '').css({padding: '10px'}).empty();
for (let i in iframes) {
let iframe = iframes[i];
$(`<h3>${iframe.name} <a id="${iframe.name}" name="${iframe.name}"></a></h3>`).appendTo('body');
$('<div>').append($(`<iframe style="width:95%; height:${h}px; border:1px solid gray;">`).attr('src', root_path + iframe.src)).appendTo('body');
}
Author And Source
この問題について(複数サイトのGoogle Analyticsを一括閲覧するブックマークレット), 我々は、より多くの情報をここで見つけました https://qiita.com/puchida/items/07c3302ce0d6fae777d1著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .