We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
chromewebstore.google.com
1 parent 3dcf595 commit 0aaac32Copy full SHA for 0aaac32
1 file changed
src/crawlers/chrome.ts
@@ -6,9 +6,7 @@ export async function crawlExtension(
6
lang: string
7
): Promise<Gql.ChromeExtension | undefined> {
8
consola.info("Crawling " + id);
9
- const url = `https://chrome.google.com/webstore/detail/${id}?hl=${lang}`;
10
- // TODO: Replace with new CWS URL when old store is deprecated - tested and everything works at this time
11
- // const url = `https://chromewebstore.google.com/detail/${id}?hl=${lang}`;
+ const url = `https://chromewebstore.google.com/detail/${id}?hl=${lang}`;
12
const res = await fetch(url);
13
if (res.status !== 200) return;
14
0 commit comments