Which sites are using my jQuery plugin?

Loose indication of the sites that are importing a script with my jQuery plugin name in the filename.

SELECT url
  FROM [httparchive:runs.latest_requests]
  WHERE REGEXP_MATCH(url, r'trunk8.*\.js');

But this is really only interesting to me. For other plugin authors, just replace “trunk8” with any other JavaScript library plugin name to test its reach.

From http://jrvis.com/blog/querying-http-archive/

In honor of HTTP Archive’s 10th anniversary this week and this being my first post on the forum, I thought I’d revisit this topic and rerun the query against the 2020 dataset.

SELECT
  page,
  url
FROM
  `httparchive.summary_requests.2020_10_01_mobile`
JOIN (
  SELECT
    pageid,
    url AS page
  FROM
    `httparchive.summary_pages.2020_10_01_mobile`)
USING
  (pageid)
WHERE
  REGEXP_CONTAINS(url, r'trunk8.*\.js')

The results show my plugin (which I stopped maintaining years ago) used on 1200+ sites. Back when I ran this query in 2013 that number was 27!