pint/public/onload.js

8 lines
247 B
JavaScript
Raw Normal View History

2022-08-03 02:07:42 +00:00
/* global chrome */
2022-08-03 02:09:40 +00:00
const link = document.createElement("link");
link.href = chrome.extension.getURL("pint-css.css");
link.type = "text/css";
link.rel = "stylesheet";
link.media = "all";
document.getElementsByTagName("head")[0].appendChild(link);