Created
May 17, 2026 18:06
-
-
Save u1-liquid/2fa42e039f925493cb174ba58b4f10ad to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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