Install Inssman For Microsft Edge
This extension designed for developers. HTTP Interceptor built the top of last API's which gives you control over HTTP responses and requests.
By creating a single Rule you can.
- Redirect Request to another url
- Block Request
- Modify Query Parameters like add/remove/replace
- Modify Request Header like add/remove/append
- Modify Response Header like add/remove/append
- Modify Response allows return response such as HTML/CSS/JS/JSON file
- Insert Rule name
- Choose Match Operator (see details)
- Insert the URL which need to redirect
- Insert the URL where need to redirect
- Press Create
- Insert Rule name
- Choose Match Operator (see details)
- Insert the URL
- Press Create
- Insert Rule name
- Choose Match Operator (see details)
- Insert the URL
- Choose Action Operator
- Insert header Key
- Insert header Value
- Press Create
- Insert Rule name
- Choose Match Operator (see details)
- Insert the URL you want to add/remove/append params
- Choose Action Operator
- Choose Request/Response
- Insert header Key
- Insert header Value
- Press Create
- Insert Rule name
- Choose Match Operator (see details)
- Insert the URL
- Insert header Key
- Insert header Value
- Press Create
Contain operator searches provided word in the whole URL
Examples ⬇️
Word - user
URL - http://example.com/user
Result - Match ✅
Word - user
URL - http://example.com/?key=user
Result - Match ✅
Word - user
URL - http://user.com/
Result - Match ✅
Word - user
URL - http://example.com/
Result - No Match ❌
Equal Operator is strict matching action however this operator is ignore the protocol (http or https) and last slash (/) end of the URL
Examples ⬇️
Word - example.com
URL - http://example.com
Result - Match ✅
Word - example.com
URL - http://example.com/
Result - Match ✅
Word - example.com
URL - https://example.com/
Result - Match ✅
Word - example.com
URL - http://example.com/
Result - Match ✅
Word - example.com
URL - http://www.example.com/
Result - No Match ❌
Word - example.com
URL - http://example.com/user
Result - No Match ❌
Wilcard operator uses the asterisk (*) to match the URL
Examples ⬇️
Word - *example*
URL - http://example.com
Result - Match ✅
Word - https://*example.com
URL - https://www.example.com
Result - Match ✅
For Redirect Request there is more powerful options. Each match with asterisk can be replaced in some parts of the destination URL $[number]
Examples ⬇️
Word - https://example.com/*/*/*
URL - https://example.com/article/edit/12
Matches - $1 = article, $2 = edit, $3 = 12
Destination - https://google.com/$1/$2/$3
Redirected URL - https://google.com/article/edit/12
Result - Match ✅
Word - *://*.example.com/*
URL - https://www.example.com/?age=12&gender=male
Matches - $1 = http, $2 = www, $3 = ?age=12&gender=male
Destination - https://google.com/$1/$2/$3
Redirected URL - https://google.com/https/www/?id=12&gender=male
Result - Match ✅
Word - https://example.com/*/*/*
URL - https://www.example.com/article/edit/12
Result - No Match ❌