Mercurial > ec-userscripts
view hulotte-misc-fixes.user.js @ 147:15ec4ec958d7 default tip
Sentence case name and match filename (sort of)
author | nanaya <me@nanaya.net> |
---|---|
date | Sat, 27 Sep 2025 15:06:06 +0900 |
parents | f17f349234cb |
children |
line wrap: on
line source
// ==UserScript== // @name Hulotte misc fixes // @namespace https://nanaya.net // @version 1.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'; // the jquery require above is for yomeyaba // this one is for atropos 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); });