Created
December 3, 2019 13:00
-
-
Save androidovshchik/83fb4d57ebdb842567513de1df9b7642 to your computer and use it in GitHub Desktop.
FL autocomplete
This file contains 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 FL | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://fl.ru/* | |
// @match https://www.fl.ru/* | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
var descr = document.getElementById("el-descr"); | |
if (descr) { | |
descr.value = "Привет\nОбращайтесь\nТелеграм @androidovshchik"; | |
var time_from = document.getElementById("el-time_from"); | |
if (time_from) { | |
time_from.value = "1"; | |
} | |
var cost_from = document.getElementById("el-cost_from"); | |
if (cost_from) { | |
cost_from.value = "100"; | |
} | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment