Advertisement
Guest User

Untitled

a guest
May 17th, 2016
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         web.skype.com Linux unlock
  3. // @namespace    http://tampermonkey.net/
  4. // @version      0.1
  5. // @description  unlocks audio/video calls and file transfer in Linux
  6. // @author       M1cha
  7. // @match        https://web.skype.com/*
  8. // @grant        none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12.     'use strict';
  13.  
  14.     // Your code here...
  15.     navigator.__defineGetter__('userAgent', function(){
  16.         return 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586';
  17.     });
  18. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement