-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Searching through the source code #2
Comments
Yes, that's really the next step (full source code search + metadata search). I'm currently indexing extensions infos + metadata to elasticsearch, source code search should come soon after that. |
Now I wonder mainly if I should do it in mariadb/postgres instead since we want precise search and fuzzy searchs are not that useful here Also, I was hoping that using ES would make search efficient like with Algolia but it's hard to tune the thing
Reminder to myself: just extract the archives and do a normal recursive file search |
Here's a very basic prototype using EDIT: now switching to another strategy and doing it with postgres instead |
Could you index extensions by manifest keys (e.g.
permissions
/optional_permissions
,content_scripts
), and add the ability to search through the source code of extensions that match the query?For example, I'd like to know how many extensions use the webRequest API in a blocking fashion (=webRequest + webRequestBlocking permissions) and block "ping" requests (to make informed decisions on https://crbug.com/611453).
The text was updated successfully, but these errors were encountered: