pint/public/onload.js

8 lines
243 B
JavaScript
Raw Normal View History

2022-07-12 05:41:53 +00:00
/*global chrome*/
var 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);