androplus.orgへ移転しました。
数秒後に移動します。
数秒後に移動します。
[PR]
×
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
[メモ] UserJSでCSS書き換え
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;}');
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;}');