aboutsummaryrefslogtreecommitdiffstats
path: root/internal
AgeCommit message (Collapse)Author
2023-11-25swextreload.isExtensionManifestV2: Add function documentationTeddy Wing
2023-11-25swextreload.reloadTab: Rename `letarget` variableTeddy Wing
That was just a temporary name as I wasn't sure if I was going to keep the argument. Now that this seems to work, rename the variable to something more understandable.
2023-11-25swextreload.reloadTab: Remove `isExtensionManifestV2` argumentTeddy Wing
It was a bit confusing to have a variable and a function with the same name.
2023-11-25swextreload: Explain why we don't cancel certain contextsTeddy Wing
2023-11-25swextreload: Explain MV2 vs. MV3 tab reload handlingTeddy Wing
2023-11-25swextreload: Explain 200 millisecond sleep before reloading tabTeddy Wing
2023-11-25swextreload: Remove finished TODOsTeddy Wing
2023-11-20swextreload: Ideas for problems sending messagesTeddy Wing
I'm sometimes having trouble sending messages to the extension pages. Trying out different things here but nothing appears to be cutting it just yet. It seems like there are times when we just don't get a response back or can't connect to a target for whatever reason, either in the initial extension reload step or in the tab reload. Also, since the delay for tab reloading appears to only be relevant for Manifest V3 extensions, I added a condition before sleeping.
2023-11-19swextreload: Timeout after five secondsTeddy Wing
If there's a hangup in the DevTools Protocol communication, just exit like we did in Extreload.
2023-11-18swextreload: Debugging service worker inactiveTeddy Wing
I was getting an error sending to a null `target`. At first I thought I should send the tab reload message to the last extension instead of the first extension. But I later discovered that the inactive service worker isn't even in the list of targets from `Target.getTargets`. Not sure what to about this one. Is it possible to wake up the service worker since we know its ID/URL?
2023-11-18swextreload: Extract debug logging to functionTeddy Wing
Move the `isDebug` check to a function so we don't have to put conditions everywhere.
2023-11-17swextreload: Make tab reload work on both MV2 and MV3 contextsTeddy Wing
2023-11-17swextreload: Fix MV2 extension reloadTeddy Wing
There was a problem reloading the tab from an MV2 extension, and reloading the extension after the first time. Looks like I needed to cancel the context in order to be able to evaluate other statements in the background page.
2023-11-17swextreload: Reload all targets matching a given extension IDTeddy Wing
There may be multiple instances of the same extension ID. Ensure all of them are reloaded.
2023-11-17swextreload: Test Runtime.evaluateTeddy Wing
No change.
2023-11-17swextreload: Try lifting getTargets outside of `reloadExtension`Teddy Wing
Call getTargets only once, not each time we want to reload an extension. This hasn't resolved the wonkiness I'm seeing with reloading multiple extensions, unfortunately.
2023-11-16swextreload: Note about getting targets onceTeddy Wing
2023-11-16Try not cancelling contextTeddy Wing
Turns out this is what was closing the extension background page DevTools window. We shouldn't run the context cancel function.
2023-11-16swextreload: Experiment with MV2 tab reloadingTeddy Wing
Trying to set things up to not get targets again when reloading the current tab.
2023-11-14swextreload: Try to split out tab reloading into a separate functionTeddy Wing
Trying to make it so you can reload the tab only once after reloading all extensions. This still works for a single Manifest V3 extension, but I'm having trouble getting a Manifest V2 extension to reload properly.
2023-11-14swextreload: Add note for multiple extension handlingTeddy Wing
2023-11-14swextreload.Reload: Handle multiple extensionsTeddy Wing
Get rid of the `return` so we reload more than the first extension.
2023-11-14swextreload: Add package documentationTeddy Wing
2023-11-14swextreload: Add documentation commentsTeddy Wing
2023-11-14swextreload.reloadExtension: Remove old commented codeTeddy Wing
2023-11-14Make `--reload-current-tab` flag workTeddy Wing
Make the tab reload work based on the flag instead of always reloading.
2023-11-14Add `--debug` flagTeddy Wing
Condition printing debug output on the presence of this flag.
2023-11-14swextreload.reloadExtension: Return errorsTeddy Wing
Add our own errors and return these instead of logging them.
2023-11-14swextreload.Reload: Accept a list of extension IDsTeddy Wing
Run the reload on multiple extensions.
2023-11-14swextreload.Reload: Extract argumentsTeddy Wing
2023-11-14Move code from `main()` to `swextreload.Reload()`Teddy Wing
Move everything to our library.
2023-11-14internal/swextreload: Get rid of option interface, use plain argumentsTeddy Wing
2023-11-14Move swextreload.go to internal/Teddy Wing
Don't make this a public API. I'd rather do something simple and bad to get this finished quickly.