Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- "Warning! Non-ASCII characters found.": {
- "regex": "[^\\p{ASCII}]"
- },
- "HTTP link. Consider using HTTPS.": {
- "regex": "^http:\/\/",
- "replacement": "https:\/\/"
- },
- "Missing HTTP scheme.": {
- "regex": "^(?!.*:)",
- "replacement": "http:\/\/$0"
- },
- "Missing HTTPS scheme.": {
- "regex": "^(?!.*:)",
- "replacement": "https:\/\/$0"
- },
- "Invalid http scheme capitalization.": {
- "regex": "^(?!http:)[hH][tT]{2}[pP]:(.*)",
- "replacement": "http:$1",
- "automatic": "true"
- },
- "Invalid https scheme capitalization.": {
- "regex": "^(?!https:)[hH][tT]{2}[pP][sS]:(.*)",
- "replacement": "https:$1",
- "automatic": "true"
- },
- "Reddit ➔ Redlib": {
- "regex": "^https?:\/\/(?:[a-z0-9-]+\\.)*?reddit.com\/(.*)",
- "replacement": "https:\/\/farside.link\/redlib\/$1",
- "enabled": "true"
- },
- "X ➔ Nitter": {
- "regex": "^https?:\/\/(?:[a-z0-9-]+\\.)*?x.com\/(.*)",
- "replacement": "https:\/\/xcancel.com\/$1",
- "enabled": "true"
- },
- "YouTube Desktop": {
- "regex": "^https?:\/\/.*\\.youtube\\.com\/watch\\?v=([a-zA-Z0-9_-]+)",
- "replacement": [
- "https:\/\/youtube.com\/v\/$1"
- ],
- "enabled": "true"
- },
- "Youtube ➔ Invidious": {
- "regex": "^https?:\/\/(?:[a-z0-9-]+\\.)*?youtube.com\/(.*)",
- "replacement": [
- "https:\/\/yewtu.be\/$1",
- "https:\/\/farside.link\/invidious\/$1"
- ],
- "enabled": "false"
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement