Angel Browser やnbrowser(Mikan Browser)にはUser Script機能があります。
GreasemonkeyやScriptishのスクリプトがほぼそのまま使えます。
CSSも書き換えられるため、非root端末でも広告ブロックなどができます。
モバイル版Gmailの「○○としてログイン中」のメッセージを非表示にする
// ==UserScript==
// @name Gmail mes
// @include https://mail.google.com*
// ==/UserScript==
function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName(‘head’)[0];
if (!head) { return }
style = document.createElement(‘style’);
style.type = ‘text/css’;
style.innerHTML = css;
head.appendChild(style);
}
addGlobalStyle(‘#og_user_warning{display: none !important;}’);