I am making a userscript and stylesheet for a website. Because I want to have both stylesheet and script on Git, I am trying to load them from filesystem, rather then storing them in browser profile.
For Greasemonkey userscript, this was easy:
// ==UserScript==
// @name Userscript loader
// @namespace pleasetellmewhatthehellisthis
// @include ... url ...
// @version 1
// @grant none
// @require file:///D:/xxx/xxxx/xxxx.js
// ==/UserScript==
But can I do the same with stylish?