複数サイトのGoogle Analyticsを一括閲覧するブックマークレット


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');
    }

srcの文字列は、アナリティクスのURLの最後につく文字列です。
こんな感じに、一括でiframe表示されますー