fregante
fregante
They should use GitHub’s variables instead of hardcoded values. Some examples found on https://github.com/sindresorhus/refined-github/pull/3806/files#diff-6bac73775a12d805afa6d62285ac64ea8a831fc58293d55752dbe701a2fdafa3
Notice the browser’s "You have unread notifications" being on top the popup. The `title` attribute should be dropped
Notifications Beta offers a search field; We can use that same query as an option *instead* of just having the “Show only participating notifications” checkbox
There's no way to mark all as read. Adding the button will make it look less balanced, so we might need to [get creative.](https://www.youtube.com/watch?v=9C_HReR_McQ)
Recently I found myself having to bundle the tests to overcome all the hurdles caused by combinations of AVA, TypeScript and `type: "module"` (https://github.com/vadimdemedes/dom-chef/pull/68 and https://github.com/sindresorhus/refined-github/pull/3206), so having AVA support...
Package.json mentions that this is an Node ES module: https://github.com/fczbkk/css-selector-generator/blob/d72f6ffe61b8874b46b6424d4d5131295712103b/package.json#L8 But ESM requires file extensions, which are missing: https://github.com/fczbkk/css-selector-generator/blob/d72f6ffe61b8874b46b6424d4d5131295712103b/src/index.ts#L1 Additionally, your `.` import actually point to the non-ESM version, so...
With more and more websites using CSS modules, `css-selector-generator` often generates fickle selectors that are only valid until the next deployment. Would it be possible to automatically detect and exclude...
## Description Template literal functions appear simple, but are deceiving: ```js const html = ([string]) => string; html`${document.title}`; // -> '', not 'The document title' ``` So I published [`code-tag`](https://github.com/fregante/code-tag/blob/main/index.ts)...
# 🙋 feature request There are 3 ways to inject files in a WebExtension: - [contentScripts.register()](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/contentScripts/register) - [tabs.executeScript()](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/tabs/executeScript) - [tabs.insertCSS](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/tabs/insertCSS) So they should add a dependency to the graph because...
Apparently TypeScript’s playground allows importing from npm: URL: https://www.typescriptlang.org/play?#code/JYWwDg9gTgLgBDAnmApnA3gUQB4GMVgwC+cAZlBCHAORKoC0pKAzjNQNwCwAUD3WgDEIEOAF4MPAJABXAHbBc0WQC44rKMFkBzLt0lQAhpoBGEAO6rTEADYoDs3UV19kg4QHVgMABYRpMACUjWVMzMTgcfEIAHiEIABoaQxNzagA+XQB6TNE0jDkFJVV1TS0iIA I think this URL should be included in the readme and other places.