Skip to content

1.11.0

Latest
Compare
Choose a tag to compare
@crashmax-dev crashmax-dev released this 08 Sep 15:07

⚠️ Breaking changes:

Before:

import './style.css' // currently not working

After:

import style from './style.css?raw'

// adds the given style to the document and returns the injected style element
const styleElement = GM_addStyle(style)

// you can remove the style element
styleElement.remove()

Full Changelog: 1.10.0...1.11.0