/*
* @title mailto2sms
* @description replace mailto: to sms:
* @include http://*
* @include https://*
* @contributor xtetsuji http://let.hatelabo.jp/xtetsuji/let/gYC-x4nJrb7zFA (Fork of)
* @license MIT License http://opensource.org/licenses/MIT
* @require
*/
Array.prototype.forEach.call(document.querySelectorAll('a[href^="mailto:"]'), function (anchor) {
anchor.href = anchor.href.replace(/^mailto:/, 'sms:');
});