changeset 143:385d07e4a81b default tip

Add hulotte misc fixes
author nanaya <me@nanaya.net>
date Sat, 27 Sep 2025 14:44:04 +0900
parents 3a5015322602
children
files hulotte-misc-fixes.user.js
diffstat 1 files changed, 21 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/hulotte-misc-fixes.user.js	Sat Sep 27 14:44:04 2025 +0900
@@ -0,0 +1,21 @@
+// ==UserScript==
+// @name        Hulotte misc fixes
+// @namespace   https://nanaya.net
+// @version     1.1
+// @description Misc fixes
+// @author      nanaya
+// @match       https://hulotte.jp/product/*
+// @grant       none
+// @require     https://code.jquery.com/jquery-1.12.4.min.js
+// @downloadURL https://hg.nanaya.net/ec-userscripts/raw-file/tip/hulotte-misc-fixes.user.js
+// @run-at      document-start
+// ==/UserScript==
+
+'use strict';
+
+document.addEventListener('DOMContentLoaded', function () {
+  const el = document.createElement('link');
+  el.rel = 'stylesheet';
+  el.href = 'https://netdna.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.css';
+  document.body.append(el);
+});