Home | History | Annotate | Download | only in isAllowedAccess
      1 <!DOCTYPE html>
      2 <!--
      3  * Copyright (c) 2011 The Chromium Authors. All rights reserved.  Use of this
      4  * source code is governed by a BSD-style license that can be found in the
      5  * LICENSE file.
      6 -->
      7 <html>
      8   <head>
      9     <title>extension.isAllowedAccess Sample</title>
     10     <link rel="stylesheet" href="./sample.css">
     11   </head>
     12   <body>
     13     <h1>extension.isAllowedAccess Sample</h1>
     14     <section>
     15       <ol>
     16         <li><p>
     17           <span>1</span> chrome.extension.isAllowedFileSchemeAccess:
     18           <code id="file">unknown</code> (unpacked extensions always have
     19           file scheme access, you'll need to install this as a packed
     20           extension to toggle it properly)
     21         </p></li>
     22         <li><p>
     23           <span>2</span> chrome.extension.isAllowedIncognitoAccess:
     24           <code id="incognito">unknown</code>
     25         </p></li>
     26       </ol>
     27     </section>
     28     <script src="./popup.js"></script>
     29     <script>
     30     </script>
     31   </body>
     32 </html>
     33