tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

tab.json (1463B)


      1 [
      2  {
      3    "domains": ["youtube.com"],
      4    "message": [
      5      {
      6        "text": "This website may not work with a VPN.",
      7        "modifier": ["strong"]
      8      },
      9      {
     10        "text": " Try signing in or turning VPN off while you use this website."
     11      }
     12    ],
     13    "condition": {
     14      "type": "and",
     15      "conditions": [
     16        {
     17          "type": "not",
     18          "condition": {
     19            "type": "cookie",
     20            "domain": "accounts.google.com",
     21            "name": "SID"
     22          }
     23        },
     24        {
     25          "type": "not",
     26          "condition": {
     27            "type": "cookie",
     28            "domain": "youtube.com",
     29            "name": "SID"
     30          }
     31        }
     32      ]
     33    }
     34  },
     35  {
     36    "domains": ["reddit.com"],
     37    "message": [
     38      {
     39        "text": "This website may not work with a VPN.",
     40        "modifier": ["strong"]
     41      },
     42      {
     43        "text": " Try signing in or turning VPN off while you use this website."
     44      }
     45    ],
     46    "condition": {
     47      "type": "not",
     48      "condition": {
     49        "type": "cookie",
     50        "domain": ".reddit.com",
     51        "name": "reddit_session"
     52      }
     53    }
     54  },
     55  {
     56    "domains": [
     57      "disneyplus.com",
     58      "netflix.com",
     59      "wiki.mozilla.org",
     60      "bugs.webkit.org"
     61    ],
     62    "message": [
     63      {
     64        "text": "This website may not work with a VPN.",
     65        "modifier": ["strong"]
     66      },
     67      { "text": " Try turning VPN off while you use this website." }
     68    ]
     69  }
     70 ]