Mike Taylor, Opera Software
@miketaylr
    
    
    
    Soþlice on þam dagum wæs geworden gebod fram þam casere augusto. þæt eall ymbehwyrft wære tomearcod
Forsoþe it is don, in þo daÿis a maundement wente out fro cesar august, þat al þe world shulde ben discriued
And it came to passe in those dayes, that there went out a decree from Cesar Augustus, that all the world should be taxed.
Navigator
    
    
    
    
    The
registerContentHandler()method allows sites to register themselves as possible handlers for content in a particular MIME type.
navigator.unregisterContentHandler()navigator.isContentHandlerRegistered()
    
        navigator.registerContentHandler(
          "text/x-cheeseburger",   //MIME type 
          "/code/cb.html?cb=%s",  //handler
          "Cheeseburger Parser"    //title
        );
      
    The
registerProtocolHandler()method allows Web sites to register themselves as possible handlers for particular schemes.
navigator.unregisterProtocolHandler()navigator.isProtocolHandlerRegistered()
        navigator.registerProtocolHandler(
          "tel",                             //protocol 
          "/pres/protocolhandler.html?%s",  //handler
          "Telephony"                        //title
        );
      
    Prompts the user for permission to use their Web cam or other video or audio input.
        navigator.getUserMedia("video",
          function(stream){
            video.src = stream;
          }, 
          fallback
        });
      
    Get in touch.