143
|
1 // ==UserScript==
|
|
2 // @name Hulotte misc fixes
|
|
3 // @namespace https://nanaya.net
|
145
|
4 // @version 1.1.0
|
143
|
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 });
|