143
|
1 // ==UserScript==
|
|
2 // @name Hulotte misc fixes
|
|
3 // @namespace https://nanaya.net
|
146
|
4 // @version 1.1.1
|
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
|
146
|
16 // the jquery require above is for yomeyaba
|
|
17
|
|
18 // this one is for atropos
|
143
|
19 document.addEventListener('DOMContentLoaded', function () {
|
|
20 const el = document.createElement('link');
|
|
21 el.rel = 'stylesheet';
|
|
22 el.href = 'https://netdna.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.css';
|
|
23 document.body.append(el);
|
|
24 });
|