Vyacheslav Podgornyy
Vyacheslav Podgornyy
When I activate an account I expect that the activation_token_expires_at to be set to null but it's not. The same case with reset_password_email_sent_at. Is it bug or feature?
See [REPL](https://svelte.dev/repl/d735b70561da4870ae7c1d944d9c5fa4?version=3.29.0) ``` import { beforeUpdate } from "svelte"; import Datepicker from "praecox-datepicker"; let ty = new Date().getFullYear(); let tm = new Date().getMonth() + 1; let disabled = []; beforeUpdate(()...
Crash happens when I include files with other extensions than the original. ## main.txt //= part1.doc //= part2.txt I'd rather not have such restrictions. Is it possible?
Within content-script I keep alive service-worker `setInterval(() => sendMessage("WORKER_KEEP_ALIVE_MESSAGE", ''),5000);` When the extension is updated, the content-script loses connection to the background and generates an error "Extension context invalidated". How...
For the extension that I'm building, I'm trying to inject to the MAIN environment ``` chrome.scripting.registerContentScripts([ { id: 'inpage', matches: ['http://*/*', 'https://*/*'], js: [ 'src/entries/content-scripts/inject.js' ], runAt: 'document_start', world: 'MAIN'...