Last active
May 17, 2026 18:29
-
-
Save u1-liquid/bf4ccab1b7c24cec5f63a43759064fa4 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 Amazon Prime Video Custom CSS | |
| // @namespace https://github.com/u1-liquid | |
| // @version 1.0.3 | |
| // @description Amazon Prime Video上で特定要素を非表示 | |
| // @grant GM_addStyle | |
| // @author u1-liquid | |
| // @source https://gist.github.com/u1-liquid/bf4ccab1b7c24cec5f63a43759064fa4 | |
| // @match https://www.amazon.co.jp/gp/video/* | |
| // @run-at document-idle | |
| // @updateURL https://gist.github.com/u1-liquid/bf4ccab1b7c24cec5f63a43759064fa4/raw/amazon-prime-video-custom-css.user.js | |
| // @downloadURL https://gist.github.com/u1-liquid/bf4ccab1b7c24cec5f63a43759064fa4/raw/amazon-prime-video-custom-css.user.js | |
| // @supportURL https://gist.github.com/u1-liquid/bf4ccab1b7c24cec5f63a43759064fa4#new_comment_field | |
| // ==/UserScript== | |
| (function() { | |
| 'use strict'; | |
| GM_addStyle(` | |
| /* シークバー下の「あなたにおすすめの商品」を非表示 */ | |
| div.fmugii2.atvwebplayersdk-infobar-container | |
| div.fmugii2.atvwebplayersdk-infobar-container.show { | |
| display: none !important; | |
| } | |
| /* ポップアップの「あなたにおすすめの商品」を非表示 */ | |
| div.f1ubk0hm.f1v8xbwx.f1hz0yp6, | |
| div.f1ut1vhh { | |
| display: none !important; | |
| } | |
| `); | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment