| Image | App ID | App Name | Category | Deploy Date |
|---|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name odnoklassniki | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description try to take over the world! | |
| // @author AlpGul | |
| // @include * | |
| // @grant none | |
| // ==/UserScript== |
Extract audio from a YouTube video file
ffmpeg -i INPUT.mp4 -ab 256k OUTPUT.mp3Cut 3s length
ffmpeg -y -ss 00:00:03 -i INPUT.mp4 -codec copy OUTPUT.mp4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 'use strict'; | |
| ( t => { | |
| const h = t.FEATURES; | |
| t.extend( { | |
| extension: { | |
| onConnect: { | |
| addListener: function ( a ) { | |
| return chrome.runtime.onConnect.addListener( a ) | |
| } | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ! function ( e ) { | |
| function t( n ) { | |
| if ( r[ n ] ) return r[ n ].exports; | |
| var s = r[ n ] = { | |
| i: n, | |
| l: !1, | |
| exports: {} | |
| }; | |
| return e[ n ].call( s.exports, s, s.exports, t ), s.l = !0, s.exports | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ! function ( e ) { | |
| function t( o ) { | |
| if ( n[ o ] ) return n[ o ].exports; | |
| var s = n[ o ] = { | |
| i: o, | |
| l: !1, | |
| exports: {} | |
| }; | |
| return e[ o ].call( s.exports, s, s.exports, t ), s.l = !0, s.exports | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ! function ( e ) { | |
| function t( r ) { | |
| if ( n[ r ] ) return n[ r ].exports; | |
| var i = n[ r ] = { | |
| i: r, | |
| l: !1, | |
| exports: {} | |
| }; | |
| return e[ r ].call( i.exports, i, i.exports, t ), i.l = !0, i.exports | |
| } |
1-Class Service Generator http://bluetooth-pentest.narod.ru/software/bluetooth_class_of_device-service_generator.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| WebSocket.prototype._send = WebSocket.prototype.send; | |
| WebSocket.prototype.send = function (data) { | |
| console.log("\u2192 " + data); | |
| this._send(data); | |
| this.addEventListener('message', function (msg) { | |
| console.log('\u2190 ' + msg.data); | |
| }, false); | |
| this.send = function (data) { | |
| this._send(data); | |
| console.log("\u2192 " + data); |