We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d95110 commit 08fb516Copy full SHA for 08fb516
plugins/userscript.plugin.ts
@@ -211,9 +211,9 @@ export function generateHeader() {
211
}
212
213
// Add userscript header's resources.
214
- // Some of resources should contain a specified name, for which userscript can get value from it
+ // Some of the resources should contain a specified name, for which userscripts can get value from it
215
// eg. // @resource mycss http://link.to/some.css
216
- // Userscript have the ability to apply css with `GM_addStyle(GM_getResourceText('mycss'))`
+ // Userscripts have the ability to apply css with `GM_addStyle(GM_getResourceText('mycss'))`
217
if (userscript.keyedResources) {
218
for (const dependencyName in userscript.keyedResources) {
219
headers.push(`// @resource ${dependencyName} ${userscript.keyedResources[dependencyName]}`);
0 commit comments