Skip to content

Instantly share code, notes, and snippets.

@rawnly
Created February 5, 2026 18:10
Show Gist options
  • Select an option

  • Save rawnly/539aaeb002a5c30f449ea56570c2bdd3 to your computer and use it in GitHub Desktop.

Select an option

Save rawnly/539aaeb002a5c30f449ea56570c2bdd3 to your computer and use it in GitHub Desktop.
redirecto chrome ext
{
"version": "0.0.1",
"manifest_version": 3,
"name": "redirecto",
"description": "Redirects",
"permissions": [
"declarativeNetRequest"
],
"host_permissions": [
"*://*.npmjs.com/*"
],
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset_1",
"enabled": true,
"path": "rules.json"
}
]
}
}
[
{
"id": 1,
"priority": 1,
"action": {
"type": "redirect",
"redirect": {
"regexSubstitution": "https://npmx.dev/\\2"
}
},
"condition": {
"regexFilter": "^https?://(www\\.)?npmjs\\.com/(.*)",
"resourceTypes": [
"main_frame"
]
}
}
]
@rawnly
Copy link
Author

rawnly commented Feb 5, 2026

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment