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
const {MTProto} = require('telegram-mtproto') | |
const fs = require('fs-extra') | |
const vars = JSON.parse(fs.readFileSync('secrets')) | |
const {phone, api_id, hash} = vars.userbot | |
const prompt = require('prompt-promise') | |
const api = { | |
layer: 57, | |
api_id: api_id | |
} |
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
{ | |
"USD": { | |
"symbol": "$", | |
"name": "US Dollar", | |
"symbol_native": "$", | |
"decimal_digits": 2, | |
"rounding": 0, | |
"code": "USD", | |
"name_plural": "US dollars" | |
}, |
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
[ | |
{ | |
"prefijo": "0156", | |
"nombre": "100%BANCO" | |
}, | |
{ | |
"prefijo": "0196", | |
"nombre": "ABN AMRO BANK" | |
}, | |
{ |
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
$(document).ready(function(){ | |
var $songLink = $('li.song-node-info-album').find('a').attr("href"); | |
var $tabs = $('ul.tabs'); | |
$.ajax({ | |
type: 'GET', | |
url: $songLink, | |
success: function(res){ | |
$(res).find('.green_tab').each(function(){ | |
$tabs.append($(this)); | |
}); |
NewerOlder