DLsiteの個人的に気になったところをカスタマイズしたものです。AI生成作品と特定DRM(ソフト電池)を警告など
DLsite いろいろカスタム by sasaruru
Details
Authorsasaruru
LicenseNo License
Categorydlsite
Created
Updated
Code size3.8 kB
Code checksumbc68b432
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
・「お気に入りに追加済み」の色をグレーから青に変更
・[商品ページ] AI生成作品と特定DRM(ソフト電池)の背景を赤色にして警告・購入画面を非表示
・[商品ページ] 画像プレビューの表示を枠に合わせて最大化
・[検索画面] 購入済みタイトルを非表示
・[検索画面] マイページのNG機能で指定されている作品を非表示
version 20231104.09.00
・DLsiteについての説明を非表示
・[フッター] 採用情報を非表示
・[マイページ] お気に入り/フォローリスト/保存した検索条件ページの左のメニューを常に表示
・[サークルページ] マイページのNG機能で指定されたジャンルを含む作品の背景を灰色にする
version 20240214.00.51
・[同人] 新着同人作品からマイページのNG機能で指定されたものを隠す
・[キャンペーンセールページ] マイページのNG機能で指定されたものを隠す
・[検索画面] 「無料サンプル」の表記を「サンプル画像/動画」に変更
・buddyへの処理はやめました
version 20240316.19.39
・[検索画面][セット割キャンペーン] 購入済みタイトルの非表示
・軽微な修正
Source code
/* ==UserStyle==
@name DLsite いろいろカスタム
@version 20240316.19.39
@namespace https://userstyles.world/user/sasaruru
@description DLsiteの個人的に気になったところをカスタマイズしたものです。
@author sasaruru
@license MIT
==/UserStyle== */
@-moz-document url-prefix("https://www.dlsite.com/") {
/* 「お気に入りに追加済み」の色を青に変更 */
a.btn_favorite_in {
color: blue !important;
}
/* DLsiteについての説明を非表示 */
.contents_bottom_inner:has(.site_info) {
display: none !important;
}
/* [フッター] 採用情報を非表示 */
.footer_section .recruit {
display: none !important;
}
}
@-moz-document regexp("https://www\\.dlsite\\.com/.*/work/.*") {
/* [商品ページ] AI生成作品と特定DRM(ソフト電池)を警告・購入画面を非表示に */
body:has(span.icon_AIG),
body:has(a[href*="guide/denchi"]) {
background: red;
}
body:has(span.icon_AIG) #work_buy_box_wrapper,
body:has(a[href*="guide/denchi"]) #work_buy_box_wrapper {
display: none !important
}
/* [商品ページ] 画像プレビューの表示を枠に合わせて最大化 */
div.slider_popup_mainbox > div > picture > img[style] {
width: 100% !important;
height: 100% !important;
object-fit: contain !important;
}
}
@-moz-document regexp("https://www\\.dlsite\\.com/.*/fsr/.*"),
regexp("https://www\\.dlsite\\.com/[a-zA-Z0-9]*/campaign/bulkbuy/.*") {
/* [検索画面] 購入済みタイトルの非表示 */
#search_result_list tr:has(.btn_dl) {
display: none !important;
}
/* [検索画面][セット割キャンペーン] マイページのNG機能で指定されたものを隠す */
li:has(img._censored),
tr:has(img._censored) {
display: none !important
}
/* [検索画面][セット割キャンペーン] 購入済みタイトルの非表示 */
#search_result_list li:has(.btn_dl) {
display: none !important;
}
/* [検索画面] 「無料サンプル」の表記を「サンプル画像/動画」に変更 */
.btn_category_sample a {
font-size: 0;
}
.btn_category_sample a:after {
font-size: 10px;
content: 'サンプル画像/動画';
}
}
@-moz-document url-prefix("https://www.dlsite.com/maniax/mypage/wishlist"),
url-prefix("https://www.dlsite.com/maniax/mypage/followlist"),
url-prefix("https://www.dlsite.com/maniax/mypage/searchword") {
/* [マイページ] お気に入り/フォローリスト/保存した検索条件ページの左のメニューを常に表示 */
#container #left {
margin-left: 15px !important;
position: fixed !important;
background-color: white !important;
}
}
@-moz-document regexp("https://www\\.dlsite\\.com/[a-zA-Z0-9]*/circle/profile/.*") {
/* [サークルページ] マイページのNG機能で指定されたジャンルを含む作品の背景を灰色にする*/
tr:has(img._censored) {
background-color: rgb(246, 246, 246) !important;
}
/* [サークルページ] 購入済みタイトルの背景を灰色にする */
table.work_1col_table tr:has(a.btn_dl) {
background-color: #dcccff !important;
}
}
@-moz-document regexp("https://www.dlsite.com\\maniax/?"),
regexp("https://www.dlsite.com/home\\/?") {
/* [同人] 新着同人作品からマイページのNG機能で指定されたものを隠す */
.n_work_list_container .n_worklist_item:has(img._censored) {
display: none !important;
}
}
@-moz-document regexp("https://www.dlsite.com/[a-zA-Z0-9]*/campaign/sale.*") {
/* [キャンペーンセールページ] マイページのNG機能で指定されたものを隠す */
li.search_result_img_box_inner:has(img._censored) {
display: none !important
}
}