Skip to content

Instantly share code, notes, and snippets.

@androidovshchik
Created December 3, 2019 13:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save androidovshchik/83fb4d57ebdb842567513de1df9b7642 to your computer and use it in GitHub Desktop.
Save androidovshchik/83fb4d57ebdb842567513de1df9b7642 to your computer and use it in GitHub Desktop.
FL autocomplete
// ==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