Skip to content

Commit

Permalink
Deps
Browse files Browse the repository at this point in the history
  • Loading branch information
tomayac committed Oct 3, 2023
1 parent 055a21b commit f436412
Show file tree
Hide file tree
Showing 5 changed files with 2,047 additions and 1,953 deletions.
4 changes: 2 additions & 2 deletions contentscript.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ window.browser = window.browser || window.chrome;
cacheNames.forEach((cacheName) => {
cacheContents[cacheName] = [];
cachePromises.push(
caches.open(cacheName).then((cache) => cache.keys())
caches.open(cacheName).then((cache) => cache.keys()),
);
});
return Promise.all(cachePromises).then((cacheResults) => {
Expand All @@ -138,7 +138,7 @@ window.browser = window.browser || window.chrome;
? contentType.split(";")[0]
: "unknown";
return cacheContents[cacheNames[i]].push(serializedRequest);
})
}),
);
});
});
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"short_name": "SW Detector",
"description": "This extension detects if a website registers a Service Worker.",
"author": "Thomas Steiner ([email protected], @tomayac)",
"version": "2.4.0",
"version": "2.4.1",
"icons": {
"16": "assets/icon-female-16.png",
"48": "assets/icon-female.png",
Expand Down
Loading

0 comments on commit f436412

Please sign in to comment.