>>616
ロゴ消しユーザースクリプト

// ==UserScript==
// @name スピードダイアルのCSS
// @include berry://speeddial
// ==/UserScript==
(function() {

var css = function(){/*
.app-name{ display:none !important }
*/}.toString().split(/\n/).slice(1, -1).join("\n");

var heads = document.getElementsByTagName("head");
if (heads.length > 0) {
var node = document.createElement("style");
node.type = "text/css";
node.appendChild(document.createTextNode(css));
heads[0].appendChild(node);
}
})();