Mercurial > ec-userscripts
view hulotte-misc-fixes.user.js @ 145:eca476484f36
More complete version
author | nanaya <me@nanaya.net> |
---|---|
date | Sat, 27 Sep 2025 14:53:17 +0900 |
parents | 385d07e4a81b |
children | f17f349234cb |
line wrap: on
line source
// ==UserScript== // @name Hulotte misc fixes // @namespace https://nanaya.net // @version 1.1.0 // @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); });