view hulotte-misc-fixes.user.js @ 143:385d07e4a81b

Add hulotte misc fixes
author nanaya <me@nanaya.net>
date Sat, 27 Sep 2025 14:44:04 +0900
parents
children eca476484f36
line wrap: on
line source

// ==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);
});