diff options
author | Teddy Wing | 2023-11-12 12:23:52 +0100 |
---|---|---|
committer | Teddy Wing | 2023-11-12 12:27:42 +0100 |
commit | ff7eb76be6e8a6aa1e5ee5f3cc3efac8455e9daf (patch) | |
tree | 10b405b40433e3019455c0c4bb246c93fb6879d9 /scratch.lisp | |
parent | d2aebc157aaaac786b066fe00c2abf122d4f1f0e (diff) | |
download | extreload-ff7eb76be6e8a6aa1e5ee5f3cc3efac8455e9daf.tar.bz2 |
Track Manifest V3 extensions in a list
I want to keep track of Manifest V3 extensions, because these must be
re-attached to in order to reload the tab. We will later look at this
list to find out if we need to skip reloading the extension (it's
already been done), and instead proceed directly to reloading the tab.
Diffstat (limited to 'scratch.lisp')
-rw-r--r-- | scratch.lisp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/scratch.lisp b/scratch.lisp new file mode 100644 index 0000000..7d64977 --- /dev/null +++ b/scratch.lisp @@ -0,0 +1,20 @@ +(ql:quickload "extreload") + +(defvar extreload::*config* + (extreload::make-config :socket-url "ws://127.0.0.1:55755/devtools/browser/4536efdf-6ddf-40b6-9a16-258a1935d866" + :reload-current-tab t + :debug-output t + :extension-ids '("imcibeelfmccdpnnlemllnepgbfdbkgo")) + ) + + +(replace + "chrome-extension://imcibeelfmccdpnnlemllnepgbfdbkgo/background.bundle.js" + "" + :end1 20) +;chrome-extension://imcibeelfmccdpnnlemllnepgbfdbkgo/background.bundle.js + +(subseq + "chrome-extension://imcibeelfmccdpnnlemllnepgbfdbkgo/background.bundle.js" + 19 + (+ 19 32)) |