Mercurial > ec-userscripts
comparison 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 |
comparison
equal
deleted
inserted
replaced
142:3a5015322602 | 143:385d07e4a81b |
---|---|
1 // ==UserScript== | |
2 // @name Hulotte misc fixes | |
3 // @namespace https://nanaya.net | |
4 // @version 1.1 | |
5 // @description Misc fixes | |
6 // @author nanaya | |
7 // @match https://hulotte.jp/product/* | |
8 // @grant none | |
9 // @require https://code.jquery.com/jquery-1.12.4.min.js | |
10 // @downloadURL https://hg.nanaya.net/ec-userscripts/raw-file/tip/hulotte-misc-fixes.user.js | |
11 // @run-at document-start | |
12 // ==/UserScript== | |
13 | |
14 'use strict'; | |
15 | |
16 document.addEventListener('DOMContentLoaded', function () { | |
17 const el = document.createElement('link'); | |
18 el.rel = 'stylesheet'; | |
19 el.href = 'https://netdna.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.css'; | |
20 document.body.append(el); | |
21 }); |