tor-browser

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

appLinksLinks.html (1407B)


      1 <!doctype html>
      2 <html>
      3  <head>
      4    <title>Html_Control_Form</title>
      5    <meta charset="utf-8" />
      6    <meta name="viewport" content="width=device-width" />
      7  </head>
      8 
      9  <p>Misc Link Types</p>
     10  <section>
     11    <a href="tel://1234567890">Telephone link</a>
     12  </section>
     13 
     14  <section>
     15    <a href="intent://com.example.app">Intent schema link</a>
     16  </section>
     17 
     18  <section>
     19    <a href="vnd.youtube://@Mozilla">Youtube schema link</a>
     20  </section>
     21 
     22  <section>
     23    <a href="https://m.youtube.com/user/mozilla">Youtube link</a>
     24  </section>
     25 
     26  <section>
     27    <a href="intent://com.example.app#Intent;package=com.example.app;end">
     28      Example app link
     29    </a>
     30  </section>
     31 
     32  <section>
     33    <a href="appLinksPostNavigationPhone.html" target="_blank">
     34      Telephone post navigation link
     35    </a>
     36  </section>
     37 
     38  <section>
     39    <a
     40      href="intent://1234567890#Intent;scheme=tel;S.browser_fallback_url=https://www.mozilla.org;end;"
     41    >
     42      Telephone with fallback URL
     43    </a>
     44  </section>
     45 
     46  <section>
     47    <a href="https://mozilla.org/?afl=https://youtube.com">
     48      Link with android fallback link
     49    </a>
     50  </section>
     51 
     52  <section>
     53    <a href="https://mozilla.org/?link=https://youtube.com">
     54      Link with fallback link
     55    </a>
     56  </section>
     57 
     58  <section>
     59    <a href="https://mozilla.org/?S.browser_fallback_url=https://youtube.com">
     60      Link with browser fallback link
     61    </a>
     62  </section>
     63 </html>