Skip to content

Instantly share code, notes, and snippets.

@u1-liquid
Created May 17, 2026 18:06
Show Gist options
  • Select an option

  • Save u1-liquid/2fa42e039f925493cb174ba58b4f10ad to your computer and use it in GitHub Desktop.

Select an option

Save u1-liquid/2fa42e039f925493cb174ba58b4f10ad to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name AbemaTV Custom CSS
// @namespace https://github.com/u1-liquid
// @version 1.0.0
// @description AbemaTV上で特定要素を非表示
// @grant GM_addStyle
// @author u1-liquid
// @source https://gist.github.com/u1-liquid/2fa42e039f925493cb174ba58b4f10ad
// @match https://abema.tv/*
// @run-at document-idle
// @updateURL https://gist.github.com/u1-liquid/2fa42e039f925493cb174ba58b4f10ad/raw/abema-custom-css.user.js
// @downloadURL https://gist.github.com/u1-liquid/2fa42e039f925493cb174ba58b4f10ad/raw/abema-custom-css.user.js
// @supportURL https://gist.github.com/u1-liquid/2fa42e039f925493cb174ba58b4f10ad#new_comment_field
// ==/UserScript==
(function() {
'use strict';
GM_addStyle(`
/* Onboardingの住所入力を非表示 */
com-onboarding-OnboardingModalContainerView--enter-done {
display: none !important;
}
body--prevent-scroll {
overflow: auto !important;
}
`);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment