Outlook People Show Missing Details (Aug 2015)

Make embedded information visible

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name        Outlook People Show Missing Details (Aug 2015)
// @author      Jefferson "jscher2000" Scher
// @namespace   JeffersonScher
// @description Make embedded information visible
// @include     https://people.live.com/*
// @version     0.9
// @grant       none
// @copyright   Copyright 2015 Jefferson Scher
// @license     BSD 3-clause
// ==/UserScript==

function OPeep_fixBlankFields(el){
  var flds=el.querySelectorAll('#basicView div[id^=fld_],#detailsView div[id^=fld_]');
  for(var i=0;i<flds.length;i++){
    var dtl=document.getElementById(flds[i].id.replace('fld_','fldv_'));
    if(dtl){
      if(dtl.innerHTML=='' && dtl.hasAttribute('aria-label')){
        var lbl=document.getElementById(flds[i].id.replace('fld_','fldt_'));
        if(lbl){
          dtl.innerHTML=dtl.getAttribute('aria-label').substr(lbl.textContent.length+1);
        } else{
          dtl.innerHTML=dtl.getAttribute('aria-label');
        }
      }
    }
  }
}

// Add MutationObserver to catch content added dynamically 
function OPeep_addObserver(){
  // attach chgMon to right side of People page
  var dtlpanel = document.getElementsByClassName("ContactsDetailsArea")[0];
  if (dtlpanel){
    console.log("Adding observer");
    var OPeep_MutOb = (window.MutationObserver) ? window.MutationObserver : window.WebKitMutationObserver;
    if (OPeep_MutOb){
      var OPeep_chgMon = new OPeep_MutOb(function(mutationSet){
        mutationSet.forEach(function(mutation){
        for (var i=0; i<mutation.addedNodes.length; i++){
          if (mutation.addedNodes[i].nodeType == 1){
          OPeep_fixBlankFields(mutation.addedNodes[i]);
          }
        }
        });
      });
      var opts = {childList: true, subtree: true};
      OPeep_chgMon.observe(dtlpanel, opts);
    }
  } else {
    window.setTimeout(OPeep_addObserver, 500);
  }
}
window.setTimeout(OPeep_addObserver, 500);