プライバシーのためのAdblock検出を妨げる


あなたは、いくつかの問題を解決するための記事の閲覧時にリダイレクトをキャッチされます.これは、コンテンツを見てからあなたを防ぐ🤷‍♂️

これは、我々がブラウザによって提供されるいくつかのタイプのadblockerまたはビルトイン・プライバシー・トラッカーを使用しているならば、我々が入るかもしれないシナリオです.このポストでは🔶 the solution 続いて🔷 the methodology 解決のために到着.
その前に、時々それがトラッカー/広告を通過するのは良いことを知っておくことが重要です.今3つのシナリオがあります.
  • あなたのコンテンツの作成者/サイトをサポートする.
  • 特に銀行サイトでより良いブラウジング経験を得ること.
  • 良いパーソナライズされた広告や検索結果を取得します.
  • 🔶 解決策

    My solution is to use a browser extension called uMatrix ( Github , Chrome store , Firefox addon ). この拡張モジュールはno longer in active development since Sept 2020 , しかし、今まで私は他の先進的なデフォルトdenyブロッカーを見つけることはありません.
    すべてのことを述べている方法、tomsguideなどのウェブサイトを閲覧できるようにする方法.comまたはtechレーダー.COMは“バニラ. futurecdn . net”のトラフィックを許可することです.手動でルールをDamilrixルール設定に追加するか、UserLrix UIを使用します.

    ダラムックスルール


    * vanilla.futurecdn.net script allow
    
    or
    specific.siteurl.com vanilla.futurecdn.net script allow
    
    私は、バニラから「スクリプト」だけを許すことによって、より特定されています.富士通ネットしかし、私はそれを使用してすべてを許可するのはOKだと思う* ワイルドカード.

    ダビデ

  • 最初の拡張アイコンを押します.
  • '電源'アイコンを切り替えるには、すべてのトラフィックを一時的に無効にする
  • 更新は、すべてのロードされる結果となるウェブサイト.
  • を押して拡張アイコンは、バニラを見つけるためにスクロールします.富士通ネット'とそれをクリックしてすべてのトラフィックを許可します.
  • 下記のGIFは、ルール設定と全体のUIプロセスを見つける場所を示します.

    🔷 方法論

    The motivation🔥 behind sharing the methodology is that this relates to how do I usually find a solution when debugging software. By sharing my thought process here publicly I hope this will benefit others while open up to better suggestions on my methodology.

    1. Firstly, I start by thinking of what tool that can help in this scenario.
    2. I ended up bringing up the 🧰 browser's dev tool to investigate the network traffic.
    3. I noticed that the traffic that I get is after the redirect happens.
    4. I looked around the firefox dev tool and found the persist log option as shown in the picture below. This option is also available in the chrome dev tool.
    5. Here, I saw there are a couple of domain blocked by uMatrix. Thus, I plan to allow the traffic from those domain one at a time to test which will prevent the redirect. There's around 6 sites in this case so that is doable but in hindsight enabling half at a time might be faster.
    6. I chose google-analytics.com, quantcast.mgr.consesu.org, then lastly futurecdn.net. This is how I come to the conclusion of allowing vanilla.futurecdn.net will prevent the redirect.

    From my thought process in choosing which website to allow, I think what I can do better is to choose futurecdn.net as the 2nd tries. I over-analyze and chose quantcast.mgr.consesu.org because I saw the script file blocked is choice.js . Next time when I came across another similar scenario I will go for the domain that is being blocked the most first =)