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 Jisho Audio Downloader | |
// @namespace http://miere.ru/ | |
// @version 0.1 | |
// @description Adds download audio button to Jisho.org pages which downloads word audio clips. | |
// @author Vladislav <miere> Vorobiev | |
// @match http://jisho.org/search/* | |
// @match http://jisho.org/word/* | |
// @grant none | |
// ==/UserScript== |
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 Wanikani Critical Items Export | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Export critical items from Wanikani in form of pictures | |
// @author Vladislav <miere> Vorobiev | |
// @match https://www.wanikani.com/critical-items | |
// @grant none | |
// ==/UserScript== |
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
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Globalization; | |
using System.IO; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace ConsoleApplication1 |