2
0
mirror of https://github.com/boostorg/url.git synced 2026-01-19 04:42:15 +00:00
Files
url/example/finicky/config.json
alandefreitas 29c30e973f finicky example
fix #165
2022-10-17 18:30:43 -03:00

38 lines
625 B
JSON

{
"defaultBrowser": "Google Chrome",
"rewrite": [
{
"match": {
"protocol": "http"
},
"url": {
"protocol": "https"
}
},
{
"match": "**/*example.org/*",
"url": "http://example.com"
}
],
"handlers": [
{
"match": [
"**/*apple.com/*",
"**/*example.org/*",
"**/*example.com**"
],
"browser": "Safari"
},
{
"match": "/workplace/",
"browser": "Firefox"
},
{
"match": [
"**/*google.com/*",
"**/*.google.com/*"
],
"browser": "Google Chrome"
}
]
}